moved plugins to their own folders
This commit is contained in:
21
init.lua
21
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!
|
||||
|
||||
5
lua/custom/plugins/commentary.lua
Normal file
5
lua/custom/plugins/commentary.lua
Normal file
@@ -0,0 +1,5 @@
|
||||
return {
|
||||
{
|
||||
'tpope/vim-commentary',
|
||||
},
|
||||
}
|
||||
@@ -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 {}
|
||||
5
lua/custom/plugins/iris.lua
Normal file
5
lua/custom/plugins/iris.lua
Normal file
@@ -0,0 +1,5 @@
|
||||
return {
|
||||
{
|
||||
'soywod/iris.vim',
|
||||
},
|
||||
}
|
||||
5
lua/custom/plugins/render-markdown.lua
Normal file
5
lua/custom/plugins/render-markdown.lua
Normal file
@@ -0,0 +1,5 @@
|
||||
return {
|
||||
{
|
||||
'tpope/vim-commentary',
|
||||
},
|
||||
}
|
||||
5
lua/custom/plugins/vim-indent-object.lua
Normal file
5
lua/custom/plugins/vim-indent-object.lua
Normal file
@@ -0,0 +1,5 @@
|
||||
return {
|
||||
{
|
||||
'michaeljsmith/vim-indent-object',
|
||||
},
|
||||
}
|
||||
5
lua/custom/plugins/vim-signature.lua
Normal file
5
lua/custom/plugins/vim-signature.lua
Normal file
@@ -0,0 +1,5 @@
|
||||
return {
|
||||
{
|
||||
'tpope/vim-commentary',
|
||||
},
|
||||
}
|
||||
5
lua/custom/plugins/vim-visual-multi.lua
Normal file
5
lua/custom/plugins/vim-visual-multi.lua
Normal file
@@ -0,0 +1,5 @@
|
||||
return {
|
||||
{
|
||||
'mg979/vim-visual-multi',
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user