changed neovim keybinds

This commit is contained in:
foxora 2026-03-20 18:14:27 +00:00
parent b0b5565f76
commit 592e6f021d
2 changed files with 2 additions and 2 deletions

View file

@ -38,7 +38,7 @@ function M.on_attach(_, bufnr)
end -- TODO: someone who knows the builtin versions of these to do instead help me out please.
nmap("<leader>D", vim.lsp.buf.type_definition, "Type [D]efinition")
nmap("<leader>E", vim.diagnostic.open_float, "Show [E]rror")
nmap("<leader>e", vim.diagnostic.open_float, "Show [E]rror")
-- See `:help K` for why this keymap
nmap("K", vim.lsp.buf.hover, "Hover Documentation")

View file

@ -4,7 +4,7 @@ return {
cmd = { "Fyler" },
keys = {
{
"<leader>e",
"<leader>F",
function()
return require("fyler").toggle({ kind = "split_right" })
end,