diff --git a/init.lua b/init.lua index e7d3629..8cb6524 100644 --- a/init.lua +++ b/init.lua @@ -257,15 +257,15 @@ require('lazy').setup({ -- NOTE: Next Step on Your Neovim Journey: Add/Configure additional "plugins" for kickstart -- These are some example plugins that I've included in the kickstart repository. -- Uncomment any of the lines below to enable them. - require 'kickstart.plugins.autoformat', - --require 'kickstart.plugins.debug' + require 'plugins.kickstart.autoformat', + --require 'plugins.kickstart.debug' - -- NOTE: The import below can automatically add your own plugins, configuration, etc from `lua/custom/plugins/*.lua` + -- NOTE: The import below can automatically add your own plugins, configuration, etc from `lua/plugins/custom/*.lua` -- You can use this folder to prevent any conflicts with this init.lua if you're interested in keeping -- up-to-date with whatever is in the kickstart repo. - -- Uncomment the following line and add your plugins to `lua/custom/plugins/*.lua` to get going. + -- Uncomment the following line and add your plugins to `lua/plugins/custom/*.lua` to get going. -- For additional information see: https://github.com/folke/lazy.nvim#-structuring-your-plugins - { import = 'custom.plugins' }, + { import = 'plugins.custom' }, }, {}) -- custom/keymaps.lua file diff --git a/lua/custom/plugins/filetree.lua b/lua/plugins/custom/filetree.lua similarity index 100% rename from lua/custom/plugins/filetree.lua rename to lua/plugins/custom/filetree.lua diff --git a/lua/custom/plugins/telescope.lua b/lua/plugins/custom/telescope.lua similarity index 100% rename from lua/custom/plugins/telescope.lua rename to lua/plugins/custom/telescope.lua diff --git a/lua/custom/plugins/undotree.lua b/lua/plugins/custom/undotree.lua similarity index 100% rename from lua/custom/plugins/undotree.lua rename to lua/plugins/custom/undotree.lua diff --git a/lua/kickstart/plugins/autoformat.lua b/lua/plugins/kickstart/autoformat.lua similarity index 100% rename from lua/kickstart/plugins/autoformat.lua rename to lua/plugins/kickstart/autoformat.lua diff --git a/lua/kickstart/plugins/debug.lua b/lua/plugins/kickstart/debug.lua similarity index 100% rename from lua/kickstart/plugins/debug.lua rename to lua/plugins/kickstart/debug.lua