Files
nvimdots/lua/autocmd.lua
T
2025-12-23 14:14:22 +01:00

30 lines
581 B
Lua

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("VimLeave", {
command = "set guicursor=a:ver25-Cursor",
})
autocmd("BufWritePre", {
callback = function()
local ok = pcall(function()
vim.cmd "undojoin"
end)
vim.cmd "Neoformat"
end,
})
autocmd({ "InsertLeave" }, {
callback = function()
require("lint").try_lint()
end,
})