mirror of
https://git.korhonen.cc/FunctionalHacker/dotfiles.git
synced 2024-11-18 21:27:42 +00:00
Neovim: make cursor vertical in insert mode
This commit is contained in:
parent
79e3859ec6
commit
820b5d1377
@ -16,8 +16,10 @@ o.hidden = true
|
||||
-- Show line numbers
|
||||
o.number = true
|
||||
|
||||
-- Blinking cursor
|
||||
o.guicursor = 'a:blinkon1'
|
||||
o.guicursor = table.concat({
|
||||
'i:ver1', -- Vertical bar cursor in insert mode
|
||||
'a:blinkon1' -- Blinking cursor in all modes
|
||||
}, ',')
|
||||
|
||||
-- Enable global statusline
|
||||
o.laststatus = 3
|
||||
|
Loading…
Reference in New Issue
Block a user