1
0
mirror of https://github.com/dcarrillo/dotfiles.git synced 2025-07-04 14:39:25 +00:00

[neovim] Replace lsp-cmp by blink

This commit is contained in:
2025-02-02 19:28:41 +01:00
parent b40fa30e54
commit 302db332f9
10 changed files with 97 additions and 121 deletions

View File

@ -1,7 +1,7 @@
-- Highlight Yanked Text
vim.api.nvim_create_autocmd({ "TextYankPost" }, {
vim.api.nvim_create_autocmd("TextYankPost", {
callback = function()
vim.highlight.on_yank({ higroup = "Visual", timeout = 250 })
(vim.hl or vim.highlight).on_yank()
end,
})