feat: remapped C-q to C-S-q

This commit is contained in:
s-prechtl 2024-04-17 21:24:01 +02:00
parent b8f61633c5
commit 62d5562750
2 changed files with 2 additions and 2 deletions

View file

@ -85,7 +85,7 @@ vim.keymap.set('n', '<C-j>', '<C-w><C-j>', { desc = 'Move focus to the lower win
vim.keymap.set('n', '<C-k>', '<C-w><C-k>', { desc = 'Move focus to the upper window' })
-- My keybinds
vim.keymap.set('n', '<C-q>', '<cmd>wqa<CR>')
vim.keymap.set('n', '<C-S-q>', '<cmd>wqa<CR>')
vim.keymap.set('n', '<C-a>', '<cmd>w<CR>')
vim.keymap.set('n', '<leader>f', vim.lsp.buf.format)

View file

@ -9,6 +9,6 @@ return {
"rcarriga/nvim-notify",
},
opts = {
lang="go"
lang="Go"
},
}