Reorganize plugins dir
This commit is contained in:
2
init.lua
2
init.lua
@@ -105,4 +105,4 @@ vim.o.statusline = "%#StatusNormal# "
|
|||||||
|
|
||||||
|
|
||||||
require("core")
|
require("core")
|
||||||
require("lazy.init")
|
require("lazy.load")
|
||||||
|
|||||||
15
lazy-lock.json
Normal file
15
lazy-lock.json
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
"Comment.nvim": { "branch": "master", "commit": "0236521ea582747b58869cb72f70ccfa967d2e89" },
|
||||||
|
"bufferline.nvim": { "branch": "main", "commit": "6c456b888823d9e4832aa91c482bccd19445c009" },
|
||||||
|
"gitsigns.nvim": { "branch": "main", "commit": "d195f0c35ced5174d3ecce1c4c8ebb3b5bc23fa9" },
|
||||||
|
"indent-blankline.nvim": { "branch": "master", "commit": "f3eb33c04c3c5028b4efa7dbf8f68abdb6ab50ed" },
|
||||||
|
"lazy.nvim": { "branch": "main", "commit": "96584866b9c5e998cbae300594d0ccfd0c464627" },
|
||||||
|
"lualine.nvim": { "branch": "master", "commit": "2248ef254d0a1488a72041cfb45ca9caada6d994" },
|
||||||
|
"nvim-autopairs": { "branch": "master", "commit": "9fd41181693dd4106b3e414a822bb6569924de81" },
|
||||||
|
"nvim-tree.lua": { "branch": "master", "commit": "50f30bcd8c62ac4a83d133d738f268279f2c2ce2" },
|
||||||
|
"nvim-treesitter": { "branch": "master", "commit": "732c8cb0b43b7336525c3cecb2e28db153994e62" },
|
||||||
|
"nvim-web-devicons": { "branch": "master", "commit": "a1425903ab52a0a0460622519e827f224e5b4fee" },
|
||||||
|
"onedark.nvim": { "branch": "master", "commit": "c5476a091b0f1b4e853db91c91ff941f848a1cdd" },
|
||||||
|
"rainbow-delimiters.nvim": { "branch": "master", "commit": "a27051f08f6c03928ee9e94339f53da3107857db" },
|
||||||
|
"which-key.nvim": { "branch": "main", "commit": "4433e5ec9a507e5097571ed55c02ea9658fb268a" }
|
||||||
|
}
|
||||||
@@ -1 +0,0 @@
|
|||||||
print "toto"
|
|
||||||
|
|||||||
@@ -21,4 +21,4 @@ opts = {
|
|||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
require("lazy").setup("lazy.plugins", opts)
|
require("lazy").setup("plugins", opts)
|
||||||
12
lua/plugins/comment.lua
Normal file
12
lua/plugins/comment.lua
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
function conf()
|
||||||
|
--- Ensure plugin is avaiable
|
||||||
|
local comment = require('Comment')
|
||||||
|
|
||||||
|
comment.setup()
|
||||||
|
end
|
||||||
|
|
||||||
|
return {
|
||||||
|
"numToStr/Comment.nvim",
|
||||||
|
event = { "BufReadPre", "BufNewFile" },
|
||||||
|
config = conf
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user