-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.vim
More file actions
59 lines (51 loc) · 1.22 KB
/
Copy pathinit.vim
File metadata and controls
59 lines (51 loc) · 1.22 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
call plug#begin('~/.config/nvim')
Plug 'scrooloose/nerdtree'
Plug 'airblade/vim-gitgutter'
Plug 'vim-syntastic/syntastic'
Plug 'vim-airline/vim-airline'
Plug 'luochen1990/rainbow'
Plug 'natebosch/vim-lsc-dart'
Plug 'natebosch/vim-lsc'
Plug 'dart-lang/dart-vim-plugin'
Plug 'vim-ruby/vim-ruby'
Plug 'veonim/veonim'
call plug#end()
syntax on
filetype on
filetype plugin on
filetype indent on
set number
set incsearch
set hlsearch
set ruler
set showcmd
set hidden
set autoindent
set expandtab
set smartindent
set nowrap
set wildmenu
set laststatus=2
set updatetime=100
set background=dark
set statusline+=%#warningmsg#
set statusline+=%{SyntasticStatuslineFlag()}
set statusline+=%*
map <C-n> :NERDTreeToggle<CR>
map <C-e> :tabNext<CR>
nnoremap <F5> :YcmForceCompileAndDiagnostics<CR>
"lsc
let g:lsc_auto_map = v:true
"rainbow
let g:rainbow_active = 1
"gitgutter
let g:gitgutter_max_signs = 500 " default value
"suntastic
let g:syntastic_tex_checkers = ['lacheck', 'text/language_check']
let g:syntastic_always_populate_loc_list = 1
let g:syntastic_auto_loc_list = 1
let g:syntastic_check_on_open = 1
let g:syntastic_check_on_wq = 0
"airline
let g:airline#extensions#tabline#enabled = 1
let g:airline#extensions#tabline#formatter = 'unique_tail'