diff options
| author | 2023-04-13 00:39:31 -0400 | |
|---|---|---|
| committer | 2023-04-13 00:39:31 -0400 | |
| commit | 6273b6d43aedc6b00b82e1081db14c39194da765 (patch) | |
| tree | c6b1b1e6f9391696001375cb93ecd34449eefe0c /dot_config/nvim/lua/plugins/nvim-tree.lua | |
| parent | nvim: add rudimentary treesitter folding support (diff) | |
nvim: redo the whole thing
reasons tm
Diffstat (limited to 'dot_config/nvim/lua/plugins/nvim-tree.lua')
| -rw-r--r-- | dot_config/nvim/lua/plugins/nvim-tree.lua | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/dot_config/nvim/lua/plugins/nvim-tree.lua b/dot_config/nvim/lua/plugins/nvim-tree.lua deleted file mode 100644 index 129721d..0000000 --- a/dot_config/nvim/lua/plugins/nvim-tree.lua +++ /dev/null @@ -1,45 +0,0 @@ -require 'nvim-tree'.setup { - filters = { - dotfiles = true, - }, - git = { - enable = true, - ignore = true, - }, - renderer = { - icons = { - glyphs = { - default = '-', - symlink = '→', - folder = { - arrow_closed = '▶', - arrow_open = '▼', - - default = '📁', - open = '📂', - - symlink = '📁', - symlink_open = '📂', - - empty = '📁', - empty_open = '📂', - }, - git = { - deleted = '-', -- unused - unstaged = '±', - untracked = '+', - unmerged = 'U', - }, - }, - }, - }, -} - -local api = require 'nvim-tree.api' -local wk = require 'which-key' -local km = vim.keymap.set -wk.register { - ['<leader>'] = { - n = { api.tree.toggle, 'nvim-tree' }, - } -} |
