-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.cust.vim
33 lines (25 loc) · 859 Bytes
/
.cust.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
" ============================
" Copy this file to project's root path and rename, e.g.,
" $ cp ~/.vim/scripts.vim/cust.vim prj_path/.cust.vim
" ============================
" ====== Tag settings ======
" Customize tags for C language.
"set tags+=/usr/include/c++/5/stdcpp.tags
"set tags+=~/.vim/tags/include_tags
"set tags+=~/mb/metls/ctag_metls
" ====== Tab settings ======
"Expand tab to space
set expandtab
"Set space number of tab when edit
set tabstop=4
"Set space number of tab when format
set shiftwidth=4
"Continued space number that can be considered as tab
set softtabstop=4
" ====== Check settings ======
" Customize whitespace checks for C.
" useful to call for particular file types (e.g., in "ftplugin/*")
"silent! call airline#extensions#whitespace#disable()
" TEST
" Commend this line after succeed
"echo "This is a test of cust.vim"