feat(nvim): Quality of life config changes

- Blink.nvim: Fall back to default keymaps
- blink.nvim: Remove codium from sources
- lsp: Enable inlay hints by default
- keymap: <space+=> -> Evaluate highlighted text & paste result at end
This commit is contained in:
Pratik Tripathy
2025-06-12 13:11:20 +05:30
parent 6c70647adc
commit 1348574a13
3 changed files with 13 additions and 9 deletions

View File

@@ -85,8 +85,9 @@ return {
})
end
-- Native lsp inline virtual text / inlay hints
if client and client.supports_method(vim.lsp.protocol.Methods.textDocument_inlayHint) then
-- vim.lsp.inlay_hint.enable()
vim.lsp.inlay_hint.enable() -- enabled by default
map("<leader>cI", function()
vim.lsp.inlay_hint.enable(not vim.lsp.inlay_hint.is_enabled({ bufnr = event.buf }))