blob: bee449ab5d0cc6e0f6908f248039777c684e750a (
plain)
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
|
" My vimrc
" Author: Steve Lee <me@xiangyangli.com>
" Last change: 2017-11-05
""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => Basic
""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Don't try to be vi compatible
set nocompatible
" Show what you are typing as a command.
set showcmd
" number of lines
set number
" Hide GUI widget and color
if has("gui_running")
set guioptions-=m "remove menu bar
set guioptions-=T "remove toolbar
set guioptions-=r "remove right-hand scroll bar
set guioptions-=L "remove left-hand scroll bar
set t_Co=256
set guitablabel=%M\ %t
set guifont=Inconsolata\ 12
set guicursor+=a:blinkon0 "disable cursor bliking
autocmd GUIEnter * set vb t_vb= "disable bell
endif
" Make backspace behave in a sane manner
set backspace=indent,eol,start
" syntax on
syntax on
""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => Plugin using Vbundle
""""""""""""""""""""""""""""""""""""""""""""""""""""""
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
Plugin 'ctrlpvim/ctrlp.vim'
Plugin 'scrooloose/nerdtree'
Plugin 'scrooloose/nerdcommenter'
Plugin 'vim-airline/vim-airline'
Plugin 'vim-airline/vim-airline-themes'
Plugin 'majutsushi/tagbar'
" Plugin '2072/PHP-Indenting-for-VIm'
Plugin 'maralla/completor.vim'
Plugin 'stevecn/tslime.vim'
Plugin 'vim-syntastic/syntastic'
Plugin 'jiangmiao/auto-pairs'
Plugin 'nathanaelkane/vim-indent-guides'
" Plugin 'lvht/phpcd.vim'
" Colorscheme
Plugin 'chriskempson/base16-vim'
call vundle#end() " required
" Enable file type detection and do language-dependent indenting
filetype plugin indent on
""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => End Plugin
""""""""""""""""""""""""""""""""""""""""""""""""""""""
""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => General
""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Set encoding to utf8
set encoding=utf8
" Use spaces instead of tabs;
" and Be smart when using tabs.
set expandtab
set smarttab
" 1 tab == 4 spaces
set shiftwidth=4
set tabstop=4
set softtabstop=4
" Huge History
set history=1000
" Searching
set ignorecase " Ignore case when searching
set smartcase " smart about case when searching
set hlsearch " Highlight search results
set showmatch " Show matching brackets when text indicator is over them
set cursorline " highlight current line
set colorcolumn=81
" mouse and hide the cursor
set mouse=a
set mousehide
" Always show the status line
if has('statusline')
set laststatus=2
" Broken down into easily includeable segments
set statusline=%<%f\ " Filename
set statusline+=%w%h%m%r " Options
set statusline+=\ [%{&ff}/%Y] " Filetype
set statusline+=\ [%{getcwd()}] " Current dir
set statusline+=%=%-14.(%l,%c%V%)\ %p%% " Right aligned file nav info
endif
""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => General key maping
""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Leader key
let mapleader = ';'
inoremap jj <Esc>
cmap suw w !sudo tee > /dev/null %
" Trim tail write space
noremap <leader>w :call TrimWhitespace()<CR>
noremap <leader>s :w<CR>
autocmd BufWritePre * :call TrimWhitespace()
""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => Plugin config and key maping
""""""""""""""""""""""""""""""""""""""""""""""""""""""
" ctrlp.vim
" NERDTree
map <C-e> :NERDTreeToggle<CR>
" NERDCommenter
" Colorscheme
map <leader>ccl :colorscheme base16-tomorrow<CR>
map <leader>ccn :colorscheme base16-atelier-seaside<CR>
" colorscheme base16-google-dark
" colorscheme base16-default-dark
" colorscheme base16-github
colorscheme base16-tomorrow-night
" Tagbar
nnoremap <leader>tt :TagbarToggle<CR>
nnoremap <leader>tj :TagbarOpen j<CR>
" tslime
let g:tslime_normal_mapping = '<leader>t'
let g:tslime_visual_mapping = '<leader>t'
let g:tslime_vars_mapping = '<leader>T'
" completor
let g:completor_php_omni_trigger = '([\w-]+|::[\w-]*|[\w-]+->\s*[\w-]*)$'
" Syntastic
set statusline+=%#warningmsg#
set statusline+=%{SyntasticStatuslineFlag()}
set statusline+=%*
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
""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => Function
""""""""""""""""""""""""""""""""""""""""""""""""""""""
fun! TrimWhitespace()
let l:save = winsaveview()
%s/\s\+$//e
call winrestview(l:save)
endfun
|