Rewrote neovim config
This commit is contained in:
parent
57228dd15f
commit
974566df1c
23 changed files with 177 additions and 196 deletions
18
.config/nvim/lua/plugins/tree.lua
Normal file
18
.config/nvim/lua/plugins/tree.lua
Normal file
|
@ -0,0 +1,18 @@
|
|||
return {
|
||||
"nvim-tree/nvim-tree.lua",
|
||||
event = "VeryLazy",
|
||||
dependencies = {
|
||||
"nvim-tree/nvim-web-devicons",
|
||||
"navarasu/onedark.nvim",
|
||||
},
|
||||
config = function()
|
||||
require("nvim-tree").setup({
|
||||
view = {
|
||||
width = 35,
|
||||
},
|
||||
renderer = {
|
||||
root_folder_label = false
|
||||
},
|
||||
})
|
||||
end,
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue