* feat(defaults.lua): add relative line numbers
* feat(keymaps.lua): add keymaps for buffer navigation, terminal, and nvimtree * feat(nvim-tree.lua): add nvim-tree plugin with setup function
This commit is contained in:
parent
4a37a0a9b1
commit
fb273bd85e
3 changed files with 38 additions and 0 deletions
12
lua/custom/plugins/nvim-tree.lua
Normal file
12
lua/custom/plugins/nvim-tree.lua
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
return {
|
||||
{
|
||||
"nvim-tree/nvim-tree.lua",
|
||||
version = "*",
|
||||
dependencies = {
|
||||
"nvim-tree/nvim-web-devicons",
|
||||
},
|
||||
config = function()
|
||||
require("nvim-tree").setup {}
|
||||
end,
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue