Compare commits
No commits in common. "592e6f021da1478be93adf204ef4bcb5dc381737" and "86d0fda70eea7a369b1b0ea90818d8dff160fc92" have entirely different histories.
592e6f021d
...
86d0fda70e
3 changed files with 5 additions and 5 deletions
|
|
@ -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")
|
||||
|
|
|
|||
|
|
@ -17,7 +17,7 @@ return {
|
|||
keymap = {
|
||||
["<C-space>"] = { "show", "show_documentation", "hide_documentation" },
|
||||
["<C-e>"] = { "hide", "fallback" },
|
||||
["<C-h>"] = { "select_and_accept", "fallback" },
|
||||
["<C-y>"] = { "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>"] = { "show_signature", "hide_signature", "fallback" },
|
||||
["<C-S-k>"] = { "show_signature", "hide_signature", "fallback" },
|
||||
},
|
||||
|
||||
appearance = {
|
||||
|
|
@ -84,7 +84,7 @@ return {
|
|||
},
|
||||
|
||||
documentation = {
|
||||
auto_show = true,
|
||||
auto_show = false,
|
||||
window = {
|
||||
border = "rounded",
|
||||
},
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ return {
|
|||
cmd = { "Fyler" },
|
||||
keys = {
|
||||
{
|
||||
"<leader>F",
|
||||
"<leader>e",
|
||||
function()
|
||||
return require("fyler").toggle({ kind = "split_right" })
|
||||
end,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue