blink update

This commit is contained in:
2026-06-18 12:15:32 +02:00
parent 3c24466dd8
commit de3cecce41
2 changed files with 13 additions and 5 deletions
+3
View File
@@ -18,6 +18,9 @@ map("n", "K", function() vim.lsp.buf.hover({ max_width = 80 }) end,
map("n", "<leader>gf",
function() require("conform").format({ lsp_format = "fallback" }) end,
{ desc = "LSP: format buffer" })
map("x", "<leader>gs",
function() require("conform").format({ lsp_format = "fallback" }) end,
{ desc = "LSP: format selection" })
map("n", "<leader>gd", vim.lsp.buf.definition, { desc = "LSP: go to definition" })
map("n", "<leader>gD", vim.lsp.buf.declaration, { desc = "LSP: go to declaration" })