Add FzfLua and neotree

This commit is contained in:
Evan Yip 2024-02-01 20:37:06 -08:00
parent 27c67d0a61
commit 6b30e3a06e
No known key found for this signature in database
GPG key ID: 05021B1F132466E1
6 changed files with 105 additions and 52 deletions

View file

@ -0,0 +1,7 @@
return {
'numToStr/Comment.nvim',
opts = {
-- add any options here
},
lazy = false,
}

View file

@ -0,0 +1,15 @@
-- Unless you are still migrating, remove the deprecated commands from v1.x
vim.cmd([[ let g:neo_tree_remove_legacy_commands = 1 ]])
return {
"nvim-neo-tree/neo-tree.nvim",
version = "*",
dependencies = {
"nvim-lua/plenary.nvim",
"nvim-tree/nvim-web-devicons", -- not strictly required, but recommended
"MunifTanjim/nui.nvim",
},
config = function ()
require('neo-tree').setup {}
end,
}