Compare commits

...

2 commits

Author SHA1 Message Date
592e6f021d changed neovim keybinds 2026-03-20 18:14:27 +00:00
b0b5565f76 made completion engine changes :3 2026-03-20 12:18:32 +00:00
3 changed files with 5 additions and 5 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

@ -17,7 +17,7 @@ return {
keymap = {
["<C-space>"] = { "show", "show_documentation", "hide_documentation" },
["<C-e>"] = { "hide", "fallback" },
["<C-y>"] = { "select_and_accept", "fallback" },
["<C-h>"] = { "select_and_accept", "fallback" },
["<C-k>"] = { "select_prev", "fallback_to_mappings" },
["<C-j>"] = { "select_next", "fallback_to_mappings" },
@ -30,7 +30,7 @@ return {
["<Tab>"] = { "snippet_forward", "fallback" },
["<S-Tab>"] = { "snippet_backward", "fallback" },
["<C-S-k>"] = { "show_signature", "hide_signature", "fallback" },
["<C-s>"] = { "show_signature", "hide_signature", "fallback" },
},
appearance = {
@ -84,7 +84,7 @@ return {
},
documentation = {
auto_show = false,
auto_show = true,
window = {
border = "rounded",
},

View file

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