Lazy git commit

This commit is contained in:
Arkaprabha Chakraborty
2023-03-06 23:22:08 +05:30
parent ddd5955ac3
commit a8efea0044
2 changed files with 5 additions and 4 deletions

View File

@@ -16,7 +16,8 @@ nvim_tree.setup({
update_cwd = true,
renderer = {
group_empty = true,
root_folder_label = ":~:s?$?/..?",
root_folder_label = ":t",
indent_width = 2,
},
filters = {
dotfiles = true,
@@ -33,7 +34,7 @@ nvim_tree.setup({
},
update_focused_file = {
enable = true,
update_cwd = true,
update_cwd = false,
ignore_list = {},
},
})

View File

@@ -38,8 +38,8 @@ end
-- Better tabs
bind("n", "<S-t>", ":tabnew<CR>", opts)
bind("n", "<S-c>", ":tabclose<CR>", opts)
bind("n", "<S-m>", ":tabprev<CR>", opts)
bind("n", "<S-n>", ":tabnext<CR>", opts)
bind("n", "<S-n>", ":tabprev<CR>", opts)
bind("n", "<S-m>", ":tabnext<CR>", opts)
-- Better window navigation
bind("n", "<C-Left>", "<C-w>h", opts)