dotfiles/dot_config/nvim/after/plugin/whichkey.lua
2026-02-06 09:15:12 +01:00

10 lines
179 B
Lua

-- English comments only.
local ok, wk = pcall(require, "which-key")
if not ok then return end
wk.setup({
plugins = { spelling = true },
window = { border = "rounded" },
})