Signed-off-by: Taken <taken@mairimashita.org>
This commit is contained in:
2023-08-09 13:46:22 +02:00
3 changed files with 60 additions and 7 deletions

52
after/plugin/keyseer.lua Normal file
View 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",
},
},
})

View File

@@ -6,7 +6,7 @@ end
nvimcord.setup {
autostart = false,
client_id = '954365489214291979',
large_file_icon = true,
large_file_icon = false,
log_level = vim.log.levels.DEBUG,
workspace_name = function()
return vim.cmd [[pwd]]

View File

@@ -106,11 +106,11 @@ return packer.startup({
use("lewis6991/gitsigns.nvim")
use("f-person/git-blame.nvim")
-- useful plugins
use {
'glepnir/dashboard-nvim',
event = 'VimEnter',
requires = {'nvim-tree/nvim-web-devicons'}
}
use({
"glepnir/dashboard-nvim",
event = "VimEnter",
requires = { "nvim-tree/nvim-web-devicons" },
})
use({
"nvim-neorg/neorg",
run = ":Neorg sync-parsers",
@@ -140,6 +140,7 @@ return packer.startup({
})
use("ObserverOfTime/nvimcord")
use("xiyaowong/transparent.nvim")
use("jokajak/keyseer.nvim")
-- packer autosync
if packer_bootstrap then
require("packer").sync()