Initial commit
This commit is contained in:
19
lua/plugins/config/nvimtree.lua
Normal file
19
lua/plugins/config/nvimtree.lua
Normal file
@@ -0,0 +1,19 @@
|
||||
local g = vim.g
|
||||
|
||||
g.nvim_tree_indent_markers = 1
|
||||
g.nvim_tree_highlight_opened_files = 1
|
||||
g.nvim_tree_highlight_opened_files = 1
|
||||
g.nvim_tree_group_empty = 1
|
||||
g.nvim_tree_root_folder_modifier = table.concat { ":t:gs?$?/..", string.rep(" ", 1000), "?:gs?^??" }
|
||||
|
||||
require("nvim-tree").setup {
|
||||
disable_netrw = true,
|
||||
ignore_ft_on_setup = { "dashboard" },
|
||||
hijack_cursor = true,
|
||||
git = {
|
||||
ignore = false
|
||||
},
|
||||
view = {
|
||||
hide_root_folder = true
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user