mirror of
https://github.com/josean-dev/dev-environment-files.git
synced 2025-01-09 17:51:20 +01:00
40 lines
844 B
Lua
40 lines
844 B
Lua
-- import nvim-tree plugin safely
|
|
local setup, nvimtree = pcall(require, "nvim-tree")
|
|
if not setup then
|
|
return
|
|
end
|
|
|
|
-- recommended settings from nvim-tree documentation
|
|
vim.g.loaded = 1
|
|
vim.g.loaded_netrwPlugin = 1
|
|
|
|
-- change color for arrows in tree to light blue
|
|
vim.cmd([[ highlight NvimTreeIndentMarker guifg=#3FC5FF ]])
|
|
|
|
-- configure nvim-tree
|
|
nvimtree.setup({
|
|
-- change folder arrow icons
|
|
renderer = {
|
|
icons = {
|
|
glyphs = {
|
|
folder = {
|
|
arrow_closed = "", -- arrow when folder is closed
|
|
arrow_open = "", -- arrow when folder is open
|
|
},
|
|
},
|
|
},
|
|
},
|
|
-- disable window_picker for
|
|
-- explorer to work well with
|
|
-- window splits
|
|
actions = {
|
|
open_file = {
|
|
window_picker = {
|
|
enable = false,
|
|
},
|
|
},
|
|
},
|
|
-- git = {
|
|
-- ignore = false,
|
|
-- },
|
|
})
|