initial
This commit is contained in:
24
.config/nvim/lua/user/nvim_tree.lua
Normal file
24
.config/nvim/lua/user/nvim_tree.lua
Normal file
@ -0,0 +1,24 @@
|
||||
-- examples for your init.lua
|
||||
|
||||
-- empty setup using defaults
|
||||
|
||||
-- OR setup with some options
|
||||
require("nvim-tree").setup({
|
||||
sort_by = "case_sensitive",
|
||||
view = {
|
||||
adaptive_size = false,
|
||||
width = 22,
|
||||
height = 22,
|
||||
mappings = {
|
||||
list = {
|
||||
{ key = "u", action = "dir_up" },
|
||||
},
|
||||
},
|
||||
},
|
||||
renderer = {
|
||||
group_empty = true,
|
||||
},
|
||||
filters = {
|
||||
dotfiles = true,
|
||||
},
|
||||
})
|
||||
Reference in New Issue
Block a user