[2024-08-01] Add autocommand to reset cursor from nvim -> alacritty
This commit is contained in:
parent
dc59e14fb3
commit
aa766faff1
2 changed files with 6 additions and 1 deletions
|
@ -21,3 +21,8 @@ vim.diagnostic.config({
|
|||
}
|
||||
})
|
||||
--vim.api.nvim_set_hl(0,"DiagnosticUnderlineWarn",{undercurl=true,sp='DiagnosticWarn'})
|
||||
vim.api.nvim_create_autocmd("ExitPre", {
|
||||
group = vim.api.nvim_create_augroup("Exit", { clear = true }),
|
||||
command = "set guicursor=a:ver90-blinkwait250-blinkoff250-blinkon250",
|
||||
desc = "Set cursor back to beam when leaving Neovim."
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue