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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
|
"======================================================================
"
" init-basic.vim - Need vim tiny compatible
"
" Used for general usecases. No keymap and personal preference
"
" Use '*' to search for:
" VIM_BEHAVIOR
" VISUAL
" EDIT
" JUMP
" SEARCH
" BUFFERS
" ENCODING_PREFERENCE
" FOLDING
" MISC
"======================================================================
"----------------------------------------------------------------------
" VIM_BEHAVIOR
"----------------------------------------------------------------------
let mapleader = "," " Always use comma as leader key
set nocompatible " Disable vi compatible, today is 20XX
set path=.,** " Allow :find with completion
set mouse= " Disable mouse selection
set winaltkeys=no " Allow alt key for mapping
set cursorline
set whichwrap=b,s
" set autochdir " Automatically cd to current file
" Turn persistent undo on
" means that you can undo even when you close a buffer/VIM
set undofile
set undodir=~/.vim/.undodir
set conceallevel=1
" Apply plugin and indent by filetype
filetype plugin indent on
"----------------------------------------------------------------------
" VISUAL
"----------------------------------------------------------------------
" colorscheme desert " I like desert!
" In most of the cases, it is overrides by lightline.vim
set statusline=\ %F%m%r%h\ %w\ \ CWD:\ %r%{getcwd()}%h\ \ \ Line:\ %l\ \ Column:\ %c
set showmatch " Show pairing brackets
set number relativenumber " Use relativenumber
set wrap " Disable wrap by default
set scrolloff=3 " Leave some buffer when scrolling down
set ruler " Show cursor position
set laststatus=2 " Always show the status line
set guicursor=n-v-c-sm:block,i-ci-ve:ver25,r-cr-o:hor20
"----------------------------------------------------------------------
" EDIT
"----------------------------------------------------------------------
set backspace=eol,start,indent " Set Backspace behaviors
set autoindent " If current line has indent, automatically set indent for next line
set cindent
set ttimeout
set ttimeoutlen=50
set updatetime=500
autocmd CursorHold * normal! m'
imap <C-c> <Esc>l
" Change IM to US when exit to Normal mode
autocmd InsertLeave * :silent !fcitx-remote -c &>/dev/null || true
"----------------------------------------------------------------------
" JUMP
"----------------------------------------------------------------------
set isfname=@,48-57,/,.,-,_,+,,,#,$,%,~ " This affects filename recognition for gf (go to file)
set suffixesadd=.md " Enable reference markdown file without extension
"----------------------------------------------------------------------
" SEARCH
"----------------------------------------------------------------------
set ignorecase " Search case without case sensation
set smartcase
set hlsearch " Hilight all matched texts
set incsearch " Show matched strings when typing
"----------------------------------------------------------------------
" BUFFERS
"----------------------------------------------------------------------
" Set to auto read when a file is changed from the outside
" Unnamed buffer like CmdWindows should prevent this
set autoread
autocmd FocusGained,BufEnter .* checktime
let g:quitVimWhenPressingCtrlC = 1
function! ToggleQuit()
let g:quitVimWhenPressingCtrlC = g:quitVimWhenPressingCtrlC ? 0 : 1
let message = g:quitVimWhenPressingCtrlC ? "Unlock" : "Lock"
echo message
endfunction
nnoremap gl :call ToggleQuit()<CR>
" Simply exit when closing the last buffer
function! Bye()
let specialFileTypes = ['help', 'netrw', 'vim-plug', 'nerdtree']
let bufIsSpecial = index(specialFileTypes, &filetype) != -1
let bufInMultipleWindow = len(getbufinfo(bufnr())[0].windows) > 1
if len(getbufinfo({'buflisted': 1})) == 1 && len(getwininfo()) == 1
if g:quitVimWhenPressingCtrlC
:silent! quit
else
:echo "Press gl to allow quit with <C-c>"
endif
else
:bdelete
endif
endfunction
" Ctrl-C rules!!!
nnoremap <silent> <C-c> :call Bye()<CR>
" Don't unload a buffer when no longer shown in a window
" This allows you open a new buffer and leaves current buffer modified
set hidden
" Put these in an autocmd group, so that you can revert them with:
" ":augroup vimStartup | au! | augroup END"
augroup vimStartup
au!
" When editing a file, always jump to the last known cursor position.
" Don't do it when the position is invalid, when inside an event handler
" (happens when dropping a file on gvim) and for a commit message
" (it's likely a different one than last time).
autocmd BufReadPost *
\ if line("'\"") >= 1 && line("'\"") <= line("$") && &ft !~# 'commit'
\ | exe "normal! g`\""
\ | endif
augroup END
" Set filetype for beancount
autocmd BufRead,BufNewFile *.bean call PrepareBean()
function PrepareBean()
set filetype=beancount
silent !setsid fava ~/bean/main.bean &>/dev/null
autocmd VimLeave * silent !killall fava
endfunction
" Set filetype for index.html
autocmd BufWrite *.html,*.js,*.css call ReloadServer()
function ReloadServer()
silent !browser-sync reload &>/dev/null
endfunction
" Hide the first line of a file if editing password file
" TODO a better way to determine a file is related to password-store, now use
" files under /dev/shm as filter
autocmd BufRead /dev/shm/*.txt call SetPasswordFile()
function SetPasswordFile()
setlocal foldminlines=0
setlocal foldmethod=manual
function s:custom()
return "Password"
endfunction
setlocal foldtext=s:custom()
norm! ggzfl
endfunction
"----------------------------------------------------------------------
" ENCODING_PREFERENCE
"----------------------------------------------------------------------
if has('multi_byte')
set encoding=utf-8
set fileencoding=utf-8
" Try encodings by this order
set fileencodings=utf-8,big5,ucs-bom,gbk,gb18030,euc-jp,latin1
endif
"----------------------------------------------------------------------
" FOLDING
"----------------------------------------------------------------------
set foldenable " Allow fold
set foldmethod=indent " Fold contents by indent
set foldlevel=2 " Expand all by default
"----------------------------------------------------------------------
" MISC
"----------------------------------------------------------------------
" 顯示括號匹配的時間
set matchtime=2
" 顯示最後一行
set display=lastline
" 允許下方顯示目錄
set wildmenu
" Improve performance
set lazyredraw
" Format of error message
set errorformat+=[%f:%l]\ ->\ %m,[%f:%l]:%m
" 顯示分隔符號
set listchars=tab:\|\ ,trail:.,extends:>,precedes:<
" 遇到Unicode值大於255的文本,不必等到空格再折行
set formatoptions+=m
" 合併兩行中文時,不在中間加空格
set formatoptions+=B
" Use Unix way to add newline
set ffs=unix,dos,mac
"----------------------------------------------------------------------
" Ignore these suffixes when find/complete
"----------------------------------------------------------------------
set suffixes=.bak,~,.o,.h,.info,.swp,.obj,.pyc,.pyo,.egg-info,.class
set wildignore=*.o,*.obj,*~,*.exe,*.a,*.pdb,*.lib "stuff to ignore when tab completing
set wildignore+=*.so,*.dll,*.swp,*.egg,*.jar,*.class,*.pyc,*.pyo,*.bin,*.dex
set wildignore+=*.zip,*.7z,*.rar,*.gz,*.tar,*.gzip,*.bz2,*.tgz,*.xz " MacOSX/Linux
set wildignore+=*DS_Store*,*.ipch
set wildignore+=*.gem
set wildignore+=*.png,*.jpg,*.gif,*.bmp,*.tga,*.pcx,*.ppm,*.img,*.iso
set wildignore+=*.so,*.swp,*.zip,*/.Trash/**,*.pdf,*.dmg,*/.rbenv/**
set wildignore+=*/.nx/**,*.app,*.git,.git
set wildignore+=*.wav,*.mp3,*.ogg,*.pcm
set wildignore+=*.mht,*.suo,*.sdf,*.jnlp
set wildignore+=*.chm,*.epub,*.pdf,*.mobi,*.ttf
set wildignore+=*.mp4,*.avi,*.flv,*.mov,*.mkv,*.swf,*.swc
set wildignore+=*.ppt,*.pptx,*.docx,*.xlt,*.xls,*.xlsx,*.odt,*.wps
set wildignore+=*.msi,*.crx,*.deb,*.vfd,*.apk,*.ipa,*.bin,*.msu
set wildignore+=*.gba,*.sfc,*.078,*.nds,*.smd,*.smc
set wildignore+=*.linux2,*.win32,*.darwin,*.freebsd,*.linux,*.android
|