Files
nvim-modular/lua/custom/keymaps/display.lua
2025-08-11 02:18:45 +02:00

13 lines
240 B
Lua

-- Display mappings
--
local wk = require 'which-key'
wk.add {
mode = { 'n', 'v', 'i' },
{ '<leader>d', group = '[d]isplay' }, -- group
}
-- The line beneath this is called `modeline`. See `:help modeline`
-- vim: ts=2 sts=2 sw=2 et