Files
nvim-modular/lua/custom/keymaps/general.lua
2025-08-08 03:36:34 +02:00

13 lines
260 B
Lua

-- General mappings
--
local wk = require 'which-key'
wk.add {
mode = { 'n', 'v', 'i' },
{ '<leader>q', '<CMD>qall<CR>', desc = 'Quitter', silent = true },
}
-- The line beneath this is called `modeline`. See `:help modeline`
-- vim: ts=2 sts=2 sw=2 et