diff options
author | Adam <56338480+adastx@users.noreply.github.com> | 2022-05-03 00:02:49 +0200 |
---|---|---|
committer | Adam <56338480+adastx@users.noreply.github.com> | 2022-05-03 00:32:10 +0200 |
commit | 88fce742fea734e6ad9fd3716e3f64161138926b (patch) | |
tree | 57e40051432a12b9a6372df110fc7e190642a5ff /.config/nvim/lua/setup/nvim-tree.lua | |
parent | 0e19499ddeb4ac32ef208aae658214b41148cd6c (diff) |
nvim: bufferline, nvim-tree, lsp, telescope, lualine
Diffstat (limited to '.config/nvim/lua/setup/nvim-tree.lua')
-rw-r--r-- | .config/nvim/lua/setup/nvim-tree.lua | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/.config/nvim/lua/setup/nvim-tree.lua b/.config/nvim/lua/setup/nvim-tree.lua new file mode 100644 index 0000000..2903fb0 --- /dev/null +++ b/.config/nvim/lua/setup/nvim-tree.lua @@ -0,0 +1,26 @@ +vim.cmd('highlight NvimTreeIndentMarker guifg=#3b414c gui=nocombine') + +require 'nvim-tree'.setup { + hijack_cursor = true, + renderer = { + icons = { + webdev_colors = true, + }, + indent_markers = { + enable = true, + }, + }, + view = { + side = "left", + hide_root_folder = true, + }, + git = { + enable = false, + ignore = false, + }, + actions = { + open_file = { + resize_window = true, + }, + }, +} |