{"id":3100,"date":"2023-09-01T10:19:32","date_gmt":"2023-09-01T04:49:32","guid":{"rendered":"https:\/\/smarttech101.com\/?p=3100"},"modified":"2023-09-01T10:19:36","modified_gmt":"2023-09-01T04:49:36","slug":"organizing-neovim-configuration-files","status":"publish","type":"post","link":"https:\/\/smarttech101.com\/organizing-neovim-configuration-files\/","title":{"rendered":"How to Organize Neovim\/Vim Configuration Files into Multiple Files"},"content":{"rendered":"\n<p>When it comes to customizing Vim and Neovim, the arrangement of your configuration files plays a crucial role in maintaining a clean and efficient setup. Rather than cramming everything into a single <code>init.vim<\/code> or <code>.vimrc<\/code> file, a more effective approach is to divide your configuration into multiple files. This approach offers distinct advantages over the monolithic setup, especially as you incorporate additional plugins and fine-tune their configurations. By organizing neovim configuration files, you&#8217;ll find it easier to manage your settings, maintain a clutter-free environment, and pave the way for seamless expansion as your editing arsenal grows.<\/p>\n\n\n\n<p>Organize your configuration files into distinct categories \u2013 place fundamental settings in one file, separate plugins into another, and so on. Afterward, you can include these files into your <code>init.vim<\/code> or <code>.vimrc<\/code> using the <code>source<\/code> command. This approach enhances the cleanliness of your configuration and facilitates quick access to different sections.<\/p>\n\n\n\n<p>First, create a configuration file at <code>~\/.config\/nvim\/init.vim<\/code> for Neovim, or <code>~\/.vimrc<\/code> for Vim. This is where all your settings will be placed.<\/p>\n\n\n\n<p><strong>\ud83d\udcd4 Note<\/strong>: The following discussion mainly pertains to Linux. The principles apply to macOS (Unix) as well. For Windows, the approach remains largely unchanged, as you can use the <code>source<\/code> command to include files from various locations on your system.<\/p>\n\n\n\n<p>Here&#8217;s how your <code>init.vim<\/code> or <code>.vimrc<\/code> file should look:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&#91;ajay@legion ~]$ nvim $HOME\/.config\/nvim\/init.vim<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"915\" height=\"815\" src=\"https:\/\/i0.wp.com\/smarttech101.com\/wp-content\/uploads\/2023\/09\/init.vim_.png?resize=915%2C815&#038;ssl=1\" alt=\"organizing neovim configuration files requires well structered init.vim\" class=\"wp-image-3101\" srcset=\"https:\/\/i0.wp.com\/smarttech101.com\/wp-content\/uploads\/2023\/09\/init.vim_.png?w=915&amp;ssl=1 915w, https:\/\/i0.wp.com\/smarttech101.com\/wp-content\/uploads\/2023\/09\/init.vim_.png?resize=768%2C684&amp;ssl=1 768w\" sizes=\"(max-width: 915px) 100vw, 915px\" \/><figcaption class=\"wp-element-caption\">Figure: organizing neovim configuration files requires well structered <code>init.vim<\/code><\/figcaption><\/figure>\n\n\n\n<p>The <code>plugins.vim<\/code> file can contain a list of plugins you want to use:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&#91;ajay@legion ~]$ nvim $HOME\/.config\/nvim\/vim-plug\/plugins.vim<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"734\" height=\"821\" src=\"https:\/\/i0.wp.com\/smarttech101.com\/wp-content\/uploads\/2023\/09\/plugins.vim_.png?resize=734%2C821&#038;ssl=1\" alt=\"plugins.vim listing all plugins under vim-plug\" class=\"wp-image-3102\"\/><figcaption class=\"wp-element-caption\">Figure: <code>plugins.vim<\/code> listing all plugins under <code>vim-plug<\/code> <\/figcaption><\/figure>\n\n\n\n<p>\ud83d\udcd4 Please note that the above file is based on the <a href=\"https:\/\/smarttech101.com\/how-to-manage-plugins-in-vim-neovim-ft-vim-plug\/\" target=\"_blank\" rel=\"noreferrer noopener\">Vim-Plug plugin manager. You can learn how to configure it here<\/a>].<\/p>\n\n\n\n<p><a href=\"https:\/\/smarttech101.com\/how-to-configure-neovim\" target=\"_blank\" rel=\"noreferrer noopener\">General Neovim configurations (such as enabling syntax highlighting, line wrapping, line number columns, etc.)<\/a> should be placed in the <code>settings.vim<\/code> file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&#91;ajay@legion ~]$ nvim $HOME\/.config\/nvim\/general\/settings.vim<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"710\" height=\"607\" src=\"https:\/\/i0.wp.com\/smarttech101.com\/wp-content\/uploads\/2023\/09\/settings.vim_.png?resize=710%2C607&#038;ssl=1\" alt=\"\" class=\"wp-image-3103\"\/><figcaption class=\"wp-element-caption\">Figure: <code>settings.vim<\/code> for general vim\/neovim settings<\/figcaption><\/figure>\n\n\n\n<p>Similarly, create a directory named <code>plug-config<\/code> and store all your plugin configurations there. For instance, to <a href=\"https:\/\/smarttech101.com\/nvim-lsp-autocompletion-mapping-snippets-fuzzy-search\/\" target=\"_blank\" rel=\"noreferrer noopener\">configure the Neovim autocompletion plugin <code>hrsh7th\/nvim-cmp<\/code><\/a>, you can create a file at <code>~\/.config\/nvim\/plug-config\/auto-cmp.lua<\/code>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&#91;ajay@legion ~]$ nvim $HOME\/.config\/nvim\/plug-config\/auto-cmp.lua<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"732\" height=\"785\" src=\"https:\/\/i0.wp.com\/smarttech101.com\/wp-content\/uploads\/2023\/09\/auto-cmp.lua_.png?resize=732%2C785&#038;ssl=1\" alt=\"auto-cmp.lua for configuring the plugin hrsh7th\/nvim-cmp\" class=\"wp-image-3104\"\/><figcaption class=\"wp-element-caption\">Figure: <code>auto-cmp.lua<\/code> for configuring the plugin <code>hrsh7th\/nvim-cmp<\/code><\/figcaption><\/figure>\n\n\n\n<p>By following this organized approach, you can keep your Neovim\/Vim setup well-structured and easily manageable.<\/p>\n\n\n\n<p>In conclusion, organizing your Neovim and Vim configuration files into distinct categories offers a strategic advantage in maintaining an efficient and streamlined setup. By following this approach, you can easily manage settings, accommodate new plugins, and fine-tune configurations without cluttering a single monolithic file. Embracing this organized structure enhances your editing experience and sets the stage for seamless expansion as your toolkit evolves. That&#8217;s all, folks. Thanks for reading! If you have any suggestions or comments, please feel free to share them in the comment section below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Uncover the power of structuring your Neovim\/Vim config files. Effortlessly manage settings, plugins, and pave the way for seamless future expansions, resulting in a more efficient and tailored editing environment.<\/p>\n","protected":false},"author":2,"featured_media":3105,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"nf_dc_page":"","site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"set","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[37],"tags":[40,39],"class_list":["post-3100","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-neovim","tag-neovim","tag-nvim"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Organize Neovim\/Vim Configuration Files into Multiple Files | SmartTech101<\/title>\n<meta name=\"description\" content=\"Optimize your experience by organizing neovim configuration files. Streamline settings and plugin management for seamless customization.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/smarttech101.com\/organizing-neovim-configuration-files\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Organize Neovim\/Vim Configuration Files into Multiple Files | SmartTech101\" \/>\n<meta property=\"og:description\" content=\"Optimize your experience by organizing neovim configuration files. Streamline settings and plugin management for seamless customization.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/smarttech101.com\/organizing-neovim-configuration-files\/\" \/>\n<meta property=\"og:site_name\" content=\"SmartTech101\" \/>\n<meta property=\"article:published_time\" content=\"2023-09-01T04:49:32+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-09-01T04:49:36+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/smarttech101.com\/wp-content\/uploads\/2023\/09\/How-to-Organize-NeovimVim-Configuration-Files-into-Multiple-Files.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"720\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Ajay\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@ajay_yadav\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ajay\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/smarttech101.com\/organizing-neovim-configuration-files\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/smarttech101.com\/organizing-neovim-configuration-files\/\"},\"author\":{\"name\":\"Ajay\",\"@id\":\"https:\/\/smarttech101.com\/#\/schema\/person\/2edfee738a82f9c963210f8cdb438334\"},\"headline\":\"How to Organize Neovim\/Vim Configuration Files into Multiple Files\",\"datePublished\":\"2023-09-01T04:49:32+00:00\",\"dateModified\":\"2023-09-01T04:49:36+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/smarttech101.com\/organizing-neovim-configuration-files\/\"},\"wordCount\":425,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/smarttech101.com\/#\/schema\/person\/e8d5aebc510d698e11e9df6291381633\"},\"image\":{\"@id\":\"https:\/\/smarttech101.com\/organizing-neovim-configuration-files\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/i0.wp.com\/smarttech101.com\/wp-content\/uploads\/2023\/09\/How-to-Organize-NeovimVim-Configuration-Files-into-Multiple-Files.png?fit=1280%2C720&ssl=1\",\"keywords\":[\"neovim\",\"nvim\"],\"articleSection\":[\"Neovim\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/smarttech101.com\/organizing-neovim-configuration-files\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/smarttech101.com\/organizing-neovim-configuration-files\/\",\"url\":\"https:\/\/smarttech101.com\/organizing-neovim-configuration-files\/\",\"name\":\"How to Organize Neovim\/Vim Configuration Files into Multiple Files | SmartTech101\",\"isPartOf\":{\"@id\":\"https:\/\/smarttech101.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/smarttech101.com\/organizing-neovim-configuration-files\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/smarttech101.com\/organizing-neovim-configuration-files\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/i0.wp.com\/smarttech101.com\/wp-content\/uploads\/2023\/09\/How-to-Organize-NeovimVim-Configuration-Files-into-Multiple-Files.png?fit=1280%2C720&ssl=1\",\"datePublished\":\"2023-09-01T04:49:32+00:00\",\"dateModified\":\"2023-09-01T04:49:36+00:00\",\"description\":\"Optimize your experience by organizing neovim configuration files. Streamline settings and plugin management for seamless customization.\",\"breadcrumb\":{\"@id\":\"https:\/\/smarttech101.com\/organizing-neovim-configuration-files\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/smarttech101.com\/organizing-neovim-configuration-files\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/smarttech101.com\/organizing-neovim-configuration-files\/#primaryimage\",\"url\":\"https:\/\/i0.wp.com\/smarttech101.com\/wp-content\/uploads\/2023\/09\/How-to-Organize-NeovimVim-Configuration-Files-into-Multiple-Files.png?fit=1280%2C720&ssl=1\",\"contentUrl\":\"https:\/\/i0.wp.com\/smarttech101.com\/wp-content\/uploads\/2023\/09\/How-to-Organize-NeovimVim-Configuration-Files-into-Multiple-Files.png?fit=1280%2C720&ssl=1\",\"width\":1280,\"height\":720,\"caption\":\"How to Organize NeovimVim Configuration Files into Multiple Files\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/smarttech101.com\/organizing-neovim-configuration-files\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/smarttech101.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Organize Neovim\/Vim Configuration Files into Multiple Files\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/smarttech101.com\/#website\",\"url\":\"https:\/\/smarttech101.com\/\",\"name\":\"SmartTech101\",\"description\":\"Do Everything in Linux\",\"publisher\":{\"@id\":\"https:\/\/smarttech101.com\/#\/schema\/person\/e8d5aebc510d698e11e9df6291381633\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/smarttech101.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/smarttech101.com\/#\/schema\/person\/e8d5aebc510d698e11e9df6291381633\",\"name\":\"Ajay Yadav\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/smarttech101.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/i0.wp.com\/smarttech101.com\/wp-content\/uploads\/2022\/09\/cropped-ST101_logo.png?fit=180%2C60&ssl=1\",\"contentUrl\":\"https:\/\/i0.wp.com\/smarttech101.com\/wp-content\/uploads\/2022\/09\/cropped-ST101_logo.png?fit=180%2C60&ssl=1\",\"width\":180,\"height\":60,\"caption\":\"Ajay Yadav\"},\"logo\":{\"@id\":\"https:\/\/smarttech101.com\/#\/schema\/person\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/smarttech101.com\/#\/schema\/person\/2edfee738a82f9c963210f8cdb438334\",\"name\":\"Ajay\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/smarttech101.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/6eea348caae2173954765a7cdf6cd107?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/6eea348caae2173954765a7cdf6cd107?s=96&d=mm&r=g\",\"caption\":\"Ajay\"},\"sameAs\":[\"https:\/\/x.com\/ajay_yadav\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Organize Neovim\/Vim Configuration Files into Multiple Files | SmartTech101","description":"Optimize your experience by organizing neovim configuration files. Streamline settings and plugin management for seamless customization.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/smarttech101.com\/organizing-neovim-configuration-files\/","og_locale":"en_US","og_type":"article","og_title":"How to Organize Neovim\/Vim Configuration Files into Multiple Files | SmartTech101","og_description":"Optimize your experience by organizing neovim configuration files. Streamline settings and plugin management for seamless customization.","og_url":"https:\/\/smarttech101.com\/organizing-neovim-configuration-files\/","og_site_name":"SmartTech101","article_published_time":"2023-09-01T04:49:32+00:00","article_modified_time":"2023-09-01T04:49:36+00:00","og_image":[{"width":1280,"height":720,"url":"https:\/\/smarttech101.com\/wp-content\/uploads\/2023\/09\/How-to-Organize-NeovimVim-Configuration-Files-into-Multiple-Files.png","type":"image\/png"}],"author":"Ajay","twitter_card":"summary_large_image","twitter_creator":"@ajay_yadav","twitter_misc":{"Written by":"Ajay","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/smarttech101.com\/organizing-neovim-configuration-files\/#article","isPartOf":{"@id":"https:\/\/smarttech101.com\/organizing-neovim-configuration-files\/"},"author":{"name":"Ajay","@id":"https:\/\/smarttech101.com\/#\/schema\/person\/2edfee738a82f9c963210f8cdb438334"},"headline":"How to Organize Neovim\/Vim Configuration Files into Multiple Files","datePublished":"2023-09-01T04:49:32+00:00","dateModified":"2023-09-01T04:49:36+00:00","mainEntityOfPage":{"@id":"https:\/\/smarttech101.com\/organizing-neovim-configuration-files\/"},"wordCount":425,"commentCount":0,"publisher":{"@id":"https:\/\/smarttech101.com\/#\/schema\/person\/e8d5aebc510d698e11e9df6291381633"},"image":{"@id":"https:\/\/smarttech101.com\/organizing-neovim-configuration-files\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/smarttech101.com\/wp-content\/uploads\/2023\/09\/How-to-Organize-NeovimVim-Configuration-Files-into-Multiple-Files.png?fit=1280%2C720&ssl=1","keywords":["neovim","nvim"],"articleSection":["Neovim"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/smarttech101.com\/organizing-neovim-configuration-files\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/smarttech101.com\/organizing-neovim-configuration-files\/","url":"https:\/\/smarttech101.com\/organizing-neovim-configuration-files\/","name":"How to Organize Neovim\/Vim Configuration Files into Multiple Files | SmartTech101","isPartOf":{"@id":"https:\/\/smarttech101.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/smarttech101.com\/organizing-neovim-configuration-files\/#primaryimage"},"image":{"@id":"https:\/\/smarttech101.com\/organizing-neovim-configuration-files\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/smarttech101.com\/wp-content\/uploads\/2023\/09\/How-to-Organize-NeovimVim-Configuration-Files-into-Multiple-Files.png?fit=1280%2C720&ssl=1","datePublished":"2023-09-01T04:49:32+00:00","dateModified":"2023-09-01T04:49:36+00:00","description":"Optimize your experience by organizing neovim configuration files. Streamline settings and plugin management for seamless customization.","breadcrumb":{"@id":"https:\/\/smarttech101.com\/organizing-neovim-configuration-files\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/smarttech101.com\/organizing-neovim-configuration-files\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/smarttech101.com\/organizing-neovim-configuration-files\/#primaryimage","url":"https:\/\/i0.wp.com\/smarttech101.com\/wp-content\/uploads\/2023\/09\/How-to-Organize-NeovimVim-Configuration-Files-into-Multiple-Files.png?fit=1280%2C720&ssl=1","contentUrl":"https:\/\/i0.wp.com\/smarttech101.com\/wp-content\/uploads\/2023\/09\/How-to-Organize-NeovimVim-Configuration-Files-into-Multiple-Files.png?fit=1280%2C720&ssl=1","width":1280,"height":720,"caption":"How to Organize NeovimVim Configuration Files into Multiple Files"},{"@type":"BreadcrumbList","@id":"https:\/\/smarttech101.com\/organizing-neovim-configuration-files\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/smarttech101.com\/"},{"@type":"ListItem","position":2,"name":"How to Organize Neovim\/Vim Configuration Files into Multiple Files"}]},{"@type":"WebSite","@id":"https:\/\/smarttech101.com\/#website","url":"https:\/\/smarttech101.com\/","name":"SmartTech101","description":"Do Everything in Linux","publisher":{"@id":"https:\/\/smarttech101.com\/#\/schema\/person\/e8d5aebc510d698e11e9df6291381633"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/smarttech101.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/smarttech101.com\/#\/schema\/person\/e8d5aebc510d698e11e9df6291381633","name":"Ajay Yadav","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/smarttech101.com\/#\/schema\/person\/image\/","url":"https:\/\/i0.wp.com\/smarttech101.com\/wp-content\/uploads\/2022\/09\/cropped-ST101_logo.png?fit=180%2C60&ssl=1","contentUrl":"https:\/\/i0.wp.com\/smarttech101.com\/wp-content\/uploads\/2022\/09\/cropped-ST101_logo.png?fit=180%2C60&ssl=1","width":180,"height":60,"caption":"Ajay Yadav"},"logo":{"@id":"https:\/\/smarttech101.com\/#\/schema\/person\/image\/"}},{"@type":"Person","@id":"https:\/\/smarttech101.com\/#\/schema\/person\/2edfee738a82f9c963210f8cdb438334","name":"Ajay","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/smarttech101.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/6eea348caae2173954765a7cdf6cd107?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/6eea348caae2173954765a7cdf6cd107?s=96&d=mm&r=g","caption":"Ajay"},"sameAs":["https:\/\/x.com\/ajay_yadav"]}]}},"jetpack_featured_media_url":"https:\/\/i0.wp.com\/smarttech101.com\/wp-content\/uploads\/2023\/09\/How-to-Organize-NeovimVim-Configuration-Files-into-Multiple-Files.png?fit=1280%2C720&ssl=1","_links":{"self":[{"href":"https:\/\/smarttech101.com\/wp-json\/wp\/v2\/posts\/3100"}],"collection":[{"href":"https:\/\/smarttech101.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/smarttech101.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/smarttech101.com\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/smarttech101.com\/wp-json\/wp\/v2\/comments?post=3100"}],"version-history":[{"count":3,"href":"https:\/\/smarttech101.com\/wp-json\/wp\/v2\/posts\/3100\/revisions"}],"predecessor-version":[{"id":3108,"href":"https:\/\/smarttech101.com\/wp-json\/wp\/v2\/posts\/3100\/revisions\/3108"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/smarttech101.com\/wp-json\/wp\/v2\/media\/3105"}],"wp:attachment":[{"href":"https:\/\/smarttech101.com\/wp-json\/wp\/v2\/media?parent=3100"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/smarttech101.com\/wp-json\/wp\/v2\/categories?post=3100"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/smarttech101.com\/wp-json\/wp\/v2\/tags?post=3100"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}