akfmsldkf

This commit is contained in:
manobann 2023-04-22 15:18:00 +02:00
parent 84f3fb622a
commit 8cfd7d5725
2 changed files with 9 additions and 0 deletions

View File

@ -486,6 +486,7 @@ keymap("t", "<C-h>", "<C-\\><C-N><C-w>h", term_opts)
keymap("t", "<C-j>", "<C-\\><C-N><C-w>j", term_opts)
keymap("t", "<C-k>", "<C-\\><C-N><C-w>k", term_opts)
keymap("t", "<C-l>", "<C-\\><C-N><C-w>l", term_opts)
keymap("t", "jk", "<C-l>", term_opts)
-- Barbar keymaps

View File

@ -0,0 +1,8 @@
-- File: lua/custom/plugins/autopairs.lua
return {
"windwp/nvim-autopairs",
config = function()
require("nvim-autopairs").setup {}
end,
}