mirror of
https://github.com/pratiktri/dotfiles.git
synced 2026-02-04 08:41:43 +05:30
fix(neovim): Unmap ]c, [c & show modified directories in file tree
- `]c` & `[c` are mapped by default to diffview change traversal
This commit is contained in:
@@ -267,7 +267,7 @@ return {
|
|||||||
enable = true,
|
enable = true,
|
||||||
goto_next_start = {
|
goto_next_start = {
|
||||||
["]f"] = { query = "@function.outer", desc = "Goto next inner function start" },
|
["]f"] = { query = "@function.outer", desc = "Goto next inner function start" },
|
||||||
["]c"] = { query = "@class.outer", desc = "Goto next inner class start" },
|
-- ["]c"] = { query = "@class.outer", desc = "Goto next inner class start" },
|
||||||
["]o"] = { query = "@loop.*", desc = "Goto next loop start" },
|
["]o"] = { query = "@loop.*", desc = "Goto next loop start" },
|
||||||
},
|
},
|
||||||
goto_next_end = {
|
goto_next_end = {
|
||||||
@@ -277,7 +277,7 @@ return {
|
|||||||
},
|
},
|
||||||
goto_previous_start = {
|
goto_previous_start = {
|
||||||
["[f"] = { query = "@function.outer", desc = "Goto goto previous inner function start" },
|
["[f"] = { query = "@function.outer", desc = "Goto goto previous inner function start" },
|
||||||
["[c"] = { query = "@class.outer", desc = "Previous inner class start" },
|
-- ["[c"] = { query = "@class.outer", desc = "Previous inner class start" },
|
||||||
["[o"] = { query = "@loop.*", desc = "Goto previous loop start" },
|
["[o"] = { query = "@loop.*", desc = "Goto previous loop start" },
|
||||||
},
|
},
|
||||||
goto_previous_end = {
|
goto_previous_end = {
|
||||||
|
|||||||
@@ -44,7 +44,6 @@ return {
|
|||||||
filetype = "neo-tree",
|
filetype = "neo-tree",
|
||||||
text = "Neo-tree",
|
text = "Neo-tree",
|
||||||
highlight = "Directory",
|
highlight = "Directory",
|
||||||
text_align = "left",
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user