summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/setup/nvim-tree.lua
diff options
context:
space:
mode:
authorAdam Stück <adam@adast.dk>2024-08-28 08:58:46 +0200
committerAdam Stück <adam@adast.dk>2024-08-28 08:58:46 +0200
commit42af051a2339acdc893d11014b0543aabf4c08da (patch)
treea09726f5151f05a05f0374a93776837f0d9e1e1f /.config/nvim/lua/setup/nvim-tree.lua
parent163b8df4567aa7afb94ed311a178a16496d8f602 (diff)
nvim: add nvim-conf git submodule
Diffstat (limited to '.config/nvim/lua/setup/nvim-tree.lua')
-rw-r--r--.config/nvim/lua/setup/nvim-tree.lua26
1 files changed, 0 insertions, 26 deletions
diff --git a/.config/nvim/lua/setup/nvim-tree.lua b/.config/nvim/lua/setup/nvim-tree.lua
deleted file mode 100644
index 2903fb0..0000000
--- a/.config/nvim/lua/setup/nvim-tree.lua
+++ /dev/null
@@ -1,26 +0,0 @@
-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,
- },
- },
-}