13 lines
338 B
Lua
13 lines
338 B
Lua
-- General mappings
|
|
--
|
|
|
|
local status_kh, kh = pcall(require, 'custom.plugins.keymaps-helper')
|
|
if not status_kh then
|
|
return
|
|
end
|
|
|
|
kh.map({ 'n', 'v', 'i' }, '<leader>q', '<CMD>qall<CR>', { silent = true, noremap = true, desc = '[Q]uit all' })
|
|
|
|
-- The line beneath this is called `modeline`. See `:help modeline`
|
|
-- vim: ts=2 sts=2 sw=2 et
|