52
after/plugin/keyseer.lua
Normal file
52
after/plugin/keyseer.lua
Normal file
@@ -0,0 +1,52 @@
|
|||||||
|
local status, keyseer = pcall(require, "keyseer")
|
||||||
|
if not status then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
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>"] = "F1",
|
||||||
|
["<F2>"] = "F2",
|
||||||
|
["<F3>"] = "F3",
|
||||||
|
["<F4>"] = "F4",
|
||||||
|
["<F5>"] = "F5",
|
||||||
|
["<F6>"] = "F6",
|
||||||
|
["<F7>"] = "F7",
|
||||||
|
["<F8>"] = "F8",
|
||||||
|
["<F9>"] = "F9",
|
||||||
|
["<F10>"] = "F10",
|
||||||
|
-- ["<space>"] = "SPC",
|
||||||
|
-- ["<cr>"] = "RET",
|
||||||
|
-- ["<tab>"] = "TAB",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
})
|
||||||
@@ -106,11 +106,11 @@ return packer.startup({
|
|||||||
use("lewis6991/gitsigns.nvim")
|
use("lewis6991/gitsigns.nvim")
|
||||||
use("f-person/git-blame.nvim")
|
use("f-person/git-blame.nvim")
|
||||||
-- useful plugins
|
-- useful plugins
|
||||||
use {
|
use({
|
||||||
'glepnir/dashboard-nvim',
|
"glepnir/dashboard-nvim",
|
||||||
event = 'VimEnter',
|
event = "VimEnter",
|
||||||
requires = {'nvim-tree/nvim-web-devicons'}
|
requires = { "nvim-tree/nvim-web-devicons" },
|
||||||
}
|
})
|
||||||
use({
|
use({
|
||||||
"nvim-neorg/neorg",
|
"nvim-neorg/neorg",
|
||||||
run = ":Neorg sync-parsers",
|
run = ":Neorg sync-parsers",
|
||||||
@@ -139,6 +139,8 @@ return packer.startup({
|
|||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
use("ObserverOfTime/nvimcord")
|
use("ObserverOfTime/nvimcord")
|
||||||
|
-- use("jokajak/keyseer.nvim")
|
||||||
|
use("TakenMC/keyseer.nvim")
|
||||||
-- packer autosync
|
-- packer autosync
|
||||||
if packer_bootstrap then
|
if packer_bootstrap then
|
||||||
require("packer").sync()
|
require("packer").sync()
|
||||||
|
|||||||
Reference in New Issue
Block a user