-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvimrc
More file actions
42 lines (30 loc) · 807 Bytes
/
vimrc
File metadata and controls
42 lines (30 loc) · 807 Bytes
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
set t_Co=256
execute pathogen#infect()
syntax on
filetype plugin indent on
set background=dark
colorscheme solarized
set number
set exrc
set secure
" tab size and replacement with spaces
set tabstop=4
set shiftwidth=4
set expandtab
set undofile
set undolevels=1000
set undoreload=10000
set completeopt=menuone
let g:syntastic_check_on_open=1
let g:syntastic_enable_highlighting=1
let g:syntastic_error_symbol='✗'
let g:syntastic_warning_symbol='!'
let g:syntastic_javascript_checkers = ['eslint']
let g:ycm_extra_conf_globlist=['~/workspace/*', '~/hasiok/*']
let g:go_highlight_functions = 1
let g:go_highlight_methods = 1
let g:go_highlight_structs = 1
let g:go_highlight_operators = 1
let g:go_highlight_build_constraints = 1
let g:go_fmt_command = "goimports"
let g:localvimrc_persistent=1