mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 16:53:00 +00:00
fix(nvim): Fix keymaps migration issues
This commit is contained in:
parent
f10828fdac
commit
42b83d4696
2 changed files with 4 additions and 4 deletions
|
|
@ -75,9 +75,9 @@ return {
|
||||||
current_line_blame = true,
|
current_line_blame = true,
|
||||||
},
|
},
|
||||||
keys = {
|
keys = {
|
||||||
{ "b", ":Gitsigns blame<CR>", desc = "Blame file" },
|
{ "<leader>gb", ":Gitsigns blame<CR>", desc = "Blame file" },
|
||||||
{ "d", ":Gitsigns diffthis<CR>", desc = "Diff file" },
|
{ "<leader>gd", ":Gitsigns diffthis<CR>", desc = "Diff file" },
|
||||||
{ "B", ":Gitsigns toggle_current_line_blame<CR>", desc = "Toggle line blame" },
|
{ "<leader>gB", ":Gitsigns toggle_current_line_blame<CR>", desc = "Toggle line blame" },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{ -- Highlight and navigate between TODOs
|
{ -- Highlight and navigate between TODOs
|
||||||
|
|
|
||||||
|
|
@ -24,7 +24,7 @@ return {
|
||||||
version = "*",
|
version = "*",
|
||||||
lazy = false,
|
lazy = false,
|
||||||
keys = {
|
keys = {
|
||||||
{ "<leader>ft", ":NvimTreeToggle", desc = "Toggle File Explorer" },
|
{ "<leader>ft", ":NvimTreeToggle<CR>", desc = "Toggle File Explorer" },
|
||||||
},
|
},
|
||||||
dependencies = {
|
dependencies = {
|
||||||
"nvim-tree/nvim-web-devicons",
|
"nvim-tree/nvim-web-devicons",
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue