feat: add keymap to jump to parent
This commit is contained in:
parent
c06b3ad61d
commit
a6e9ad6cf8
1 changed files with 5 additions and 0 deletions
|
|
@ -116,3 +116,8 @@ end, { desc = "Toggle diagnostic virtual lines and virtual text" })
|
|||
|
||||
-- Pomodoro timer
|
||||
vim.keymap.set("n", "<leader>p", ":TimerStart 30m<CR>", { desc = "Pomodoro" })
|
||||
|
||||
-- Go to context via treesitter-context
|
||||
vim.keymap.set("n", "fc", function()
|
||||
require("treesitter-context").go_to_context(vim.v.count1)
|
||||
end, { silent = true })
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue