-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit.vim
41 lines (29 loc) · 965 Bytes
/
init.vim
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
" _
" _ __ ___ _____ _(_)_ __ ___
"| '_ \ / _ \/ _ \ \ / / | '_ ` _ \
"| | | | __/ (_) \ V /| | | | | | |
"|_| |_|\___|\___/ \_/ |_|_| |_| |_|
"
" hyperextensible Vim-based text editor
" Load Vim Config
set runtimepath^=~/.vim runtimepath+=~/.vim/after
let &packpath=&runtimepath
source ~/.vimrc
call plug#begin('~/.vim/plugged')
Plug 'neoclide/coc.nvim', {'branch': 'release'}
Plug 'airblade/vim-gitgutter'
Plug 'ap/vim-css-color'
Plug 'tpope/vim-fugitive'
" Initialize plugin system
call plug#end()
" Commands
command! -nargs=0 Prettier :CocCommand prettier.formatFile
" Plugin Settings
" Git Gutter
highlight GitGutterAdd guifg=#009900 ctermfg=Green
highlight GitGutterChange guifg=#bbbb00 ctermfg=Yellow
highlight GitGutterDelete guifg=#ff2222 ctermfg=Red
let g:gitgutter_enabled= 1
let g:gitgutter_map_keys= 0
let g:gitgutter_highlight_linenrs = 1
set updatetime=100