feat: add keymap to jump to parent

This commit is contained in:
Oliver Ladner 2025-05-19 10:18:28 +02:00
commit a6e9ad6cf8

View file

@ -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 })