blink fix

This commit is contained in:
Zacharias-Brohn
2026-01-17 00:00:01 +01:00
parent 0765563c63
commit b8a764fac9
3 changed files with 13 additions and 16 deletions
+8 -8
View File
@@ -1,13 +1,13 @@
local autocmd = vim.api.nvim_create_autocmd
-- autocmd("LspAttach", {
-- callback = function(args)
-- local client = vim.lsp.get_client_by_id(args.data.client_id)
-- if client then
-- vim.lsp.document_color.enable(false, args.buf, { "background" })
-- end
-- end,
-- })
autocmd("LspAttach", {
callback = function(args)
local client = vim.lsp.get_client_by_id(args.data.client_id)
if client then
vim.lsp.document_color.enable(false, args.buf, { "background" })
end
end,
})
autocmd("VimLeave", {
command = "set guicursor=a:ver25-Cursor",