10 lines
179 B
Lua
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" },
|
|
})
|