add vimtex configuration

This commit is contained in:
2023-12-24 12:03:32 +01:00
parent 50bdcab579
commit 050a484742
2 changed files with 14 additions and 0 deletions

View File

@ -7,6 +7,10 @@ for key, binding in pairs(map_list) do
vim.api.nvim_set_keymap("n", key, binding .. "<CR>", {noremap = true, silent = true})
end
-- spelling maps
vim.api.nvim_set_keymap("n", "<Leader>s", "mz[s1z=`z", {noremap = true, silent = true})
vim.api.nvim_set_keymap("n", "à", "]s", {noremap = true, silent = true})
-- [[ kickstart.nvim ]]
-- Keymaps for better default experience
-- See `:help vim.keymap.set()`