Add files via upload
startify, nvimtree and additional keymaps added, easy to manage. main init.lua is untouched
This commit is contained in:
parent
cf0369f046
commit
f35ebcfad8
6 changed files with 156 additions and 0 deletions
14
lua/custom/plugins/nvim-tree.lua
Normal file
14
lua/custom/plugins/nvim-tree.lua
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
-- this is from https://github.com/nvim-tree/nvim-tree.lua
|
||||
|
||||
return {
|
||||
"nvim-tree/nvim-tree.lua",
|
||||
version = "*",
|
||||
dependencies = {
|
||||
"nvim-tree/nvim-web-devicons",
|
||||
},
|
||||
config = function()
|
||||
require("nvim-tree").setup {}
|
||||
--require("nvim-web-devicons").setup {}
|
||||
end,
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue