26 lines
502 B
VimL
26 lines
502 B
VimL
" _ _ __ ___
|
|
" | \| |___ __\ \ / (_)_ __
|
|
" | .` / -_) _ \ V /| | ' \
|
|
" |_|\_\___\___/\_/ |_|_|_|_|
|
|
"
|
|
|
|
" Required packages:
|
|
" - neovim (duh)
|
|
" - neovim-plug-git
|
|
|
|
" 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()
|