[neovim] set cursor back to underscore when nvim is closed
This commit is contained in:
parent
dc12689a0e
commit
129f5f6338
@ -64,6 +64,14 @@
|
|||||||
vim.opt.smartindent = true
|
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
|
-- load plugins
|
||||||
-- neo-tree
|
-- neo-tree
|
||||||
require("neo-tree").setup({
|
require("neo-tree").setup({
|
||||||
|
Reference in New Issue
Block a user