--- @type LazyPluginSpec return { "jokajak/keyseer.nvim", cmd = "KeySeer", config = function() local keyseer = require("keyseer") keyseer.setup({ debug = false, initial_mode = "n", include_builtin_keymaps = true, include_global_keymaps = true, include_buffer_keymaps = true, include_modified_keypresses = false, ignore_whichkey_conflicts = true, ui = { border = "double", margin = { 1, 0, 1, 0 }, winblend = 0, size = { width = 65, height = 10, }, icons = { keyseer = "", }, show_header = true, }, keyboard = { layout = "qwertz", keycap_padding = { 0, 1, 0, 1 }, highlight_padding = { 0, 0, 0, 0 }, key_labels = { ["Up"] = "↑", ["Down"] = "↓", ["Left"] = "←", ["Right"] = "→", [""] = "F1", [""] = "F2", [""] = "F3", [""] = "F4", [""] = "F5", [""] = "F6", [""] = "F7", [""] = "F8", [""] = "F9", [""] = "F10", -- [""] = "SPC", -- [""] = "RET", -- [""] = "TAB", }, }, }) end, }