summaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
authorBrahmajit Das <brahmajit.xyz@gmail.com>2023-08-31 12:32:56 +0530
committerBrahmajit Das <brahmajit.xyz@gmail.com>2023-08-31 12:32:56 +0530
commit278f2098a9e58059fe62b8b8dfe2d23184fe4ff7 (patch)
tree32e48a699c6cec7ff5a6d78cdbf2c6e21537e406 /lua
parent19cde1a19b3ae7c96473b7623528233bc2f6331d (diff)
nvim: nvim-tree: don't use custom mappings
Signed-off-by: Brahmajit Das <brahmajit.xyz@gmail.com>
Diffstat (limited to 'lua')
-rw-r--r--lua/plugins/nvim-tree.lua33
1 files changed, 0 insertions, 33 deletions
diff --git a/lua/plugins/nvim-tree.lua b/lua/plugins/nvim-tree.lua
index 01dfa51..b040a20 100644
--- a/lua/plugins/nvim-tree.lua
+++ b/lua/plugins/nvim-tree.lua
@@ -17,39 +17,6 @@ require('nvim-tree').setup({
number = false,
relativenumber = false,
signcolumn = "yes",
- mappings = {
- custom_only = false,
- list = {
- a = 'create',
- d = 'remove',
- l = 'parent_node',
- L = 'dir_up',
- K = 'last_sibling',
- J = 'first_sibling',
- o = 'system_open',
- p = 'paste',
- r = 'rename',
- R = 'refresh',
- t = 'next_sibling',
- T = 'prev_sibling',
- v = 'next_git_item',
- V = 'prev_git_item',
- x = 'cut',
- yl = 'copy_name',
- yp = 'copy_path',
- ya = 'copy_absolute_path',
- yy = 'copy',
- [';'] = 'edit',
- ['.'] = 'toggle_ignored',
- ['h'] = 'toggle_help',
- ['<bs>'] = 'close_node',
- ['<tab>'] = 'preview',
- ['<s-c>'] = 'close_node',
- ['<c-r>'] = 'full_rename',
- ['<c-t>'] = 'tabnew',
- ['<c-x>'] = 'split',
- },
- },
},
renderer = {
group_empty = true,