cfg - Improved cursor display
This commit is contained in:
parent
642f3904bb
commit
e2db0b2e6e
1 changed files with 5 additions and 0 deletions
|
@ -10,3 +10,8 @@ endfunction
|
||||||
set cursorline number
|
set cursorline number
|
||||||
nnoremap <silent> <Leader>oc :set cursorline! cursorcolumn!<CR>
|
nnoremap <silent> <Leader>oc :set cursorline! cursorcolumn!<CR>
|
||||||
nnoremap <silent> <Leader>oC :call <SID>ToggleCursorMode()<CR>
|
nnoremap <silent> <Leader>oC :call <SID>ToggleCursorMode()<CR>
|
||||||
|
|
||||||
|
" Use a bar-like cursor in insert mode, and a blinking block in replace mode
|
||||||
|
let &t_SI = "\e[6 q"
|
||||||
|
let &t_SR = "\e[0 q"
|
||||||
|
let &t_EI = "\e[2 q"
|
||||||
|
|
Loading…
Reference in a new issue