nvim: autocmd: Fix cursor shape on exiting nvim

This is required when using foot.

See related issue
https://codeberg.org/dnkl/foot/issues/797
https://codeberg.org/dnkl/foot/issues/798
This commit is contained in:
Sanchayan Maity 2022-03-11 10:31:01 +05:30
parent df7537f711
commit 5c6eebf9b5
1 changed files with 7 additions and 0 deletions

View File

@ -42,6 +42,13 @@ local aucmd_dict = {
pattern = "*.log",
command = ":AnsiEsc"
}
},
VimLeave = {
{
group = "custom_group",
pattern = "*",
command = "set guicursor=a:ver1-blinkon0"
}
}
}