-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.localvimrc
More file actions
28 lines (20 loc) · 784 Bytes
/
.localvimrc
File metadata and controls
28 lines (20 loc) · 784 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
"let &l:makeprg="make -C ".g:localvimrc_script_dir
"let &l:makeprg="make -j 10"
"let g:ycm_server_log_level = 'debug'
"let g:ycm_confirm_extra_conf = 0
"let g:ctrlp_root_directory = "."
set tags=tags,./tags
"let g:easytags_file = "./tags"
let g:easytags_opts = ["--options=./.ctags"]
":UpdateTags -R
set path=.,**/*
let g:cmake_c_compiler = 'clang'
let g:cmake_cxx_compiler = 'clang++'
let g:cmake_build_dirs = [ "build" ]
let g:cmake_build_type = "Debug"
let g:cmake_set_makeprg = 1
let g:cmake_build_shared_libs = 1
let g:neomake_cpp_clangtidy_args = ['-p=build/',
\ '--checks=*',
\ '--header-filter="(?!pprint.hpp|?!json.hpp).*"',
\ '--export-fixes=.clang-tidy-fixes']