feat: configure blink.cmp

This commit is contained in:
ZotyDev 2026-02-23 14:54:34 -03:00
parent 01a7ce066a
commit 5119403850
Signed by: Zoty
SSH key fingerprint: SHA256:WsGEGivgl37t3Mth6uugXMOgMCTR7QolIepNbC+j/tA
6 changed files with 57 additions and 4 deletions

View file

@ -1,18 +0,0 @@
local bufnr = vim.api.nvim_get_current_buf()
vim.keymap.set(
'n',
'<leader>a',
function()
vim.cmd.RustLsp('codeAction')
end,
{ silent = true, buffer = bufnr }
)
vim.keymap.set(
'n',
'K',
function()
vim.cmd.RustLsp({ 'hover', 'actions' })
end,
{ silent = true, buffer = bufnr }
)