Nvim settings cleanup
This commit is contained in:
parent
fa6cd03635
commit
192bd63098
1 changed files with 3 additions and 3 deletions
|
|
@ -14,9 +14,9 @@ vim.o.clipboard = "unnamedplus"
|
||||||
local restore_cursor_augroup = vim.api.nvim_create_augroup("restore_cursor_shape_on_exit", { clear = true })
|
local restore_cursor_augroup = vim.api.nvim_create_augroup("restore_cursor_shape_on_exit", { clear = true })
|
||||||
|
|
||||||
vim.api.nvim_create_autocmd({ "VimLeave" }, {
|
vim.api.nvim_create_autocmd({ "VimLeave" }, {
|
||||||
group = restore_cursor_augroup,
|
group = restore_cursor_augroup,
|
||||||
desc = "restore the cursor shape on exit of neovim",
|
desc = "restore the cursor shape on exit of neovim",
|
||||||
command = "set guicursor=a:ver20",
|
command = "set guicursor=a:ver20",
|
||||||
})
|
})
|
||||||
|
|
||||||
-- Horizontal Split Line
|
-- Horizontal Split Line
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue