add(nvim): treesitter-context. Fixed highlight

Signed-off-by: Chiang Léana <leana.chiang@etudiant.univ-rennes1.fr>
This commit is contained in:
Léana 江 2023-03-08 22:48:23 +01:00 committed by Chiang Léana
parent 2bf2722827
commit 7b2fb46cea
5 changed files with 22 additions and 3 deletions

View file

@ -9,3 +9,4 @@ vim.keymap.set("n", "<C-u>", "<C-u>zz", { desc = "Move page up with cursor cente
vim.keymap.set("n", "n", "nzzzv", { desc = "Find next with cursor centered" })
vim.keymap.set("n", "N", "Nzzzv", { desc = "Find last with cursor centered" })
vim.keymap.set("n", "<leader>pv", ":Explore<CR>", { desc = "Display file explorer" })
vim.keymap.set("x", "<leader>p", "\"_dP", { desc = "Paste without copying selected", noremap = true })