diff --git a/init.lua b/init.lua index 7a3fd37..9fa8357 100644 --- a/init.lua +++ b/init.lua @@ -189,25 +189,6 @@ require('lazy').setup({ -- keys can be used to configure plugin behavior/loading/etc. -- -- Use `opts = {}` to automatically pass options to a plugin's `setup()` function, forcing the plugin to be loaded. - -- - { - 'mg979/vim-visual-multi', - }, - { - 'soywod/iris.vim', - }, - { - 'michaeljsmith/vim-indent-object', - }, - { - 'kshenoy/vim-signature', - }, - { - 'tpope/vim-commentary', - }, - { - 'MeanderingProgrammer/render-markdown.nvim', - }, -- Alternatively, use `config = function() ... end` for full control over the configuration. -- If you prefer to call `setup` explicitly, use: -- { @@ -937,7 +918,7 @@ require('lazy').setup({ -- This is the easiest way to modularize your config. -- -- Uncomment the following line and add your plugins to `lua/custom/plugins/*.lua` to get going. - -- { import = 'custom.plugins' }, + { import = 'custom.plugins' }, -- -- For additional information with loading, sourcing and examples see `:help lazy.nvim-🔌-plugin-spec` -- Or use telescope! diff --git a/lua/custom/plugins/commentary.lua b/lua/custom/plugins/commentary.lua new file mode 100644 index 0000000..5c92a71 --- /dev/null +++ b/lua/custom/plugins/commentary.lua @@ -0,0 +1,5 @@ +return { + { + 'tpope/vim-commentary', + }, +} diff --git a/lua/custom/plugins/init.lua b/lua/custom/plugins/init.lua deleted file mode 100644 index be0eb9d..0000000 --- a/lua/custom/plugins/init.lua +++ /dev/null @@ -1,5 +0,0 @@ --- You can add your own plugins here or in other files in this directory! --- I promise not to create any merge conflicts in this directory :) --- --- See the kickstart.nvim README for more information -return {} diff --git a/lua/custom/plugins/iris.lua b/lua/custom/plugins/iris.lua new file mode 100644 index 0000000..352d690 --- /dev/null +++ b/lua/custom/plugins/iris.lua @@ -0,0 +1,5 @@ +return { + { + 'soywod/iris.vim', + }, +} diff --git a/lua/custom/plugins/render-markdown.lua b/lua/custom/plugins/render-markdown.lua new file mode 100644 index 0000000..5c92a71 --- /dev/null +++ b/lua/custom/plugins/render-markdown.lua @@ -0,0 +1,5 @@ +return { + { + 'tpope/vim-commentary', + }, +} diff --git a/lua/custom/plugins/vim-indent-object.lua b/lua/custom/plugins/vim-indent-object.lua new file mode 100644 index 0000000..4658956 --- /dev/null +++ b/lua/custom/plugins/vim-indent-object.lua @@ -0,0 +1,5 @@ +return { + { + 'michaeljsmith/vim-indent-object', + }, +} diff --git a/lua/custom/plugins/vim-signature.lua b/lua/custom/plugins/vim-signature.lua new file mode 100644 index 0000000..5c92a71 --- /dev/null +++ b/lua/custom/plugins/vim-signature.lua @@ -0,0 +1,5 @@ +return { + { + 'tpope/vim-commentary', + }, +} diff --git a/lua/custom/plugins/vim-visual-multi.lua b/lua/custom/plugins/vim-visual-multi.lua new file mode 100644 index 0000000..e0f3398 --- /dev/null +++ b/lua/custom/plugins/vim-visual-multi.lua @@ -0,0 +1,5 @@ +return { + { + 'mg979/vim-visual-multi', + }, +}