add some plugins and keymaps
This commit is contained in:
parent
4bddb73128
commit
af06f0ff9e
3 changed files with 102 additions and 34 deletions
15
lua/custom/plugins/nvim-tree.lua
Normal file
15
lua/custom/plugins/nvim-tree.lua
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
-- recommended for nvim-tree
|
||||
vim.g.loaded_netrw = 1
|
||||
vim.g.loaded_netrwPlugin = 1
|
||||
|
||||
return {
|
||||
"nvim-tree/nvim-tree.lua",
|
||||
version = "*",
|
||||
lazy = false,
|
||||
dependencies = {
|
||||
"nvim-tree/nvim-web-devicons",
|
||||
},
|
||||
config = function()
|
||||
require("nvim-tree").setup {}
|
||||
end,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue