nvim add cq mappings

This commit is contained in:
thek4n 2026-05-20 20:06:53 +03:00
parent 110a2870a8
commit f563cb0683

View File

@ -88,6 +88,12 @@ map("n", '<Leader>qq', '<cmd>bd!<CR>',
map("n", '<Leader>qa', '<cmd>qa!<CR>', map("n", '<Leader>qa', '<cmd>qa!<CR>',
{desc = "Exit without saving"}) {desc = "Exit without saving"})
map("n", '<Leader>cq', '<cmd>cq 233<CR>',
{desc = "Exit without saving"})
vim.api.nvim_create_user_command('Q', 'cq 233', {})
map("n", '<Leader>he', '<cmd>set list!<CR>', map("n", '<Leader>he', '<cmd>set list!<CR>',
{desc = "Show hidden symbols"}) {desc = "Show hidden symbols"})