[2024-08-01] Add autocommand to reset cursor from nvim -> alacritty
This commit is contained in:
parent
dc59e14fb3
commit
aa766faff1
@ -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."
|
||||||
|
})
|
||||||
|
@ -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$' } }
|
||||||
|
Loading…
x
Reference in New Issue
Block a user