16 lines
292 B
VimL
16 lines
292 B
VimL
" Set course to a line when exiting nvim
|
|
:au VimLeave * set guicursor=a:ver1-blinkon0
|
|
|
|
" Set color for dark backgrounds
|
|
:set background=dark
|
|
|
|
" tabstop
|
|
set tabstop=4
|
|
set shiftwidth=4
|
|
|
|
call plug#begin('~/.config/nvim/plugged')
|
|
|
|
Plug 'neoclide/coc.nvim', {'branch': 'release'}
|
|
|
|
call plug#end()
|