[2024-08-01] Add autocommand to reset cursor from nvim -> alacritty

This commit is contained in:
Andrew Conlin 2024-08-01 16:29:20 +01:00 committed by Andrew Conlin
parent dc59e14fb3
commit aa766faff1
2 changed files with 6 additions and 1 deletions

View File

@ -21,3 +21,8 @@ vim.diagnostic.config({
} }
}) })
--vim.api.nvim_set_hl(0,"DiagnosticUnderlineWarn",{undercurl=true,sp='DiagnosticWarn'}) --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."
})

View File

@ -136,7 +136,7 @@ win_components.active[3][3] = {
} }
} }
win_components.active[3][4] = { win_components.active[3][4] = {
provider = 'scroll_bar', provider = 'scroll_bar'
} }
win_config.components = win_components win_config.components = win_components
win_config.disable = { filetypes = { '^neo[-]tree$' } } win_config.disable = { filetypes = { '^neo[-]tree$' } }