[neovim] set cursor back to underscore when nvim is closed

This commit is contained in:
Simon Cornet 2024-04-03 17:41:07 +02:00
parent dc12689a0e
commit 129f5f6338

View File

@ -64,6 +64,14 @@
vim.opt.smartindent = true
-- vim leave function
vim.api.nvim_create_autocmd({ "VimLeave" }, {
callback = function()
vim.cmd('set guicursor=a:hor20-Cursor/lCursor')
end,
})
-- load plugins
-- neo-tree
require("neo-tree").setup({