forked from carlhuda/janus
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvimrc
350 lines (283 loc) · 8 KB
/
vimrc
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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
set nocompatible
set autoread
set nobackup
set noswapfile
" vim-plug init
if empty(glob('~/.vim/autoload/plug.vim'))
silent !curl -fLo ~/.vim/autoload/plug.vim --create-dirs
\ https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
autocmd VimEnter * PlugInstall --sync | source $MYVIMRC
endif
call plug#begin('~/.vim/bundle')
Plug 'ctrlpvim/ctrlp.vim'
Plug 'tpope/vim-fugitive'
Plug 'tpope/vim-git'
Plug 'pangloss/vim-javascript'
Plug 'tpope/vim-surround'
Plug 'tpope/vim-repeat'
Plug 'tpope/vim-markdown'
Plug 'mattn/gist-vim'
Plug 'othree/xml.vim'
Plug 'vim-scripts/tComment'
Plug 'vim-scripts/argtextobj.vim'
Plug 'hail2u/vim-css3-syntax'
Plug 'othree/html5.vim'
Plug 'wavded/vim-stylus'
Plug 'w0ng/vim-hybrid'
Plug 'tomtom/tlib_vim'
Plug 'gcmt/wildfire.vim'
Plug 'MarcWeber/vim-addon-mw-utils'
Plug 'purescript-contrib/purescript-vim'
Plug 'scrooloose/nerdtree'
Plug 'wellle/targets.vim'
Plug 'MaxMEllon/vim-jsx-pretty'
Plug 'Raimondi/delimitMate'
Plug 'burner/vim-svelte'
if has('nvim')
Plug 'autozimu/LanguageClient-neovim', {
\ 'branch': 'next',
\ 'do': 'bash install.sh; npm install -g flow-bin purescript-language-server',
\ }
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
Plug 'wokalski/autocomplete-flow'
Plug 'eagletmt/neco-ghc'
Plug 'Shougo/neosnippet'
Plug 'Shougo/neosnippet-snippets'
Plug 'w0rp/ale'
Plug 'editorconfig/editorconfig-vim'
Plug 'reasonml-editor/vim-reason-plus'
else
Plug 'ervandew/supertab'
endif
call plug#end()
" Colors
if &t_Co > 2 || has("gui_running")
syntax on
endif
" Tmux
if exists('$TMUX')
set term=screen-256color
endif
set t_Co=256
set background=dark
color hybrid
" Interface
set number
set ruler
set rulerformat=%30(%=\:b%n%y%m%r%w\ %l,%c%V\ %P%)
set cursorline
" Set encoding
set encoding=utf-8
set termencoding=utf-8
set fileencodings=utf-8,cp1251,koi8-r
" Hide buffers
set hidden
" Don't update the display while executing macros
set lazyredraw
" Whitespace stuff
set nowrap
set tabstop=2
set shiftwidth=2
set softtabstop=2
set expandtab
set smarttab
" Indentation
set autoindent
set smartindent
set copyindent
" Set folding off
set nofoldenable
" Show edit mode
set showmode
" Show (partial) command in the status line
set showcmd
" Use modeline overrides
set modeline
set modelines=10
" allow backspacing over everything in insert mode
set backspace=indent,eol,start
" Use the same symbols as TextMate for tabstops and EOLs
set list listchars=tab:▸\ ,eol:¬,trail:·
" Don't continue coments on new line
set formatoptions-=o
" Searching
set hlsearch
set incsearch
set ignorecase
set smartcase
set gdefault
set magic
nnoremap <silent><space> :noh<CR>
" Tab completion
set wildmode=list:longest,list:full
set wildignore+=*.o,*.obj,.git,*.rbc,*.class,.svn,vendor/gems/*
" Scrolling
set scrolloff=999
set ttyfast
" Status bar
set laststatus=2
set statusline=\ %{HasPaste()}%<%-15.25(%f%)%m%r%h\ %w\ \
set statusline+=\ \ \ [%{&ff}/%Y]%=file=%{&fileencoding}\ enc=%{&encoding}\
set statusline+=\ \ \ %<%20.30(%{hostname()}:%{CurDir()}%)\
set statusline+=\ \ \ %=%-10.(%l,%c%V%)\ %p%%/%L
fun! CurDir()
let curdir = substitute(getcwd(), $HOME, "~", "")
return curdir
endfunction
fun! HasPaste()
if &paste
return '[PASTE]'
else
return ''
endif
endfunction
" Without setting this, ZoomWin restores windows in a way that causes
" equalalways behavior to be triggered the next time CommandT is used.
" This is likely a bludgeon to solve some other issue, but it works
set noequalalways
" No bell sound
set novisualbell
set t_vb=
" Split windows
set splitbelow
set splitright
" Remapping mapleader
let mapleader=','
" gf in new tab
nnoremap gf <c-w>gf
" be consistent with capitalized C and D commands which reach the end of line
nnoremap Y y$
" Clear trailing whitespaces
nnoremap <leader>W :%s/\s\+$//<cr>:let @/=''<CR>
" Pasting
nmap ]p p=`]
nmap ]P P=`[
nmap <silent> <leader>p :set invpaste<CR>
" Remapping H and L for something usefull
nmap H ^
nmap L g_
" Opens an edit command with the path of the currently edited file filled in
" Normal mode: <Leader>e
map <Leader>e :e <C-R>=expand("%:p:h") . "/" <CR>
" Opens a tab edit command with the path of the currently edited file filled in
" Normal mode: <Leader>t
map <Leader>te :tabe <C-R>=expand("%:p:h") . "/" <CR>
" Inserts the path of the currently edited file into a command
" Command mode: Ctrl+P
cmap <C-P> <C-R>=expand("%:p:h") . "/" <CR>
" Leader-t to CtrlP and Leader-tb to CtrlP buffers mode
map <Leader>t :CtrlP<CR>
map <Leader>tb :CtrlPBuffer<CR>
" Map Leader-# to switch tabs
map <Leader>0 0gt
imap <Leader>0 <Esc>0gt
map <Leader>1 1gt
imap <Leader>1 <Esc>1gt
map <Leader>2 2gt
imap <Leader>2 <Esc>2gt
map <Leader>3 3gt
imap <Leader>3 <Esc>3gt
map <Leader>4 4gt
imap <Leader>4 <Esc>4gt
map <Leader>5 5gt
imap <Leader>5 <Esc>5gt
map <Leader>6 6gt
imap <Leader>6 <Esc>6gt
map <Leader>7 7gt
imap <Leader>7 <Esc>7gt
map <Leader>8 8gt
imap <Leader>8 <Esc>8gt
map <Leader>9 9gt
imap <Leader>9 <Esc>9gt
" C-w k --> ,k etc.
nmap <silent> <Leader>k :wincmd k<CR>
nmap <silent> <Leader>j :wincmd j<CR>
nmap <silent> <Leader>l :wincmd l<CR>
nmap <silent> <Leader>h :wincmd h<CR>
" Open vertical split
nnoremap <silent> <Leader>w :vsplit<CR>
" Remember last location in file
if has("autocmd")
au BufReadPost * if line("'\"") > 0 && line("'\"") <= line("$")
\| exe "normal g'\"" | endif
endif
function s:setupWrapping()
set wrap
set wrapmargin=2
set textwidth=72
endfunction
function s:setupMarkup()
call s:setupWrapping()
map <buffer> <Leader>p :Mm <CR>
endfunction
" load the plugin and indent settings for the detected filetype
filetype plugin indent on
" make uses real tabs
au FileType make set noexpandtab
" Thorfile, Rakefile, Vagrantfile and Gemfile are Ruby
au BufRead,BufNewFile {Gemfile,Rakefile,Vagrantfile,Thorfile,config.ru} set ft=ruby
" md, markdown, and mk are markdown and define buffer-local preview
au BufRead,BufNewFile *.{md,markdown,mdown,mkd,mkdn} call s:setupMarkup()
" add json syntax highlighting
au BufNewFile,BufRead *.json set ft=json
" add jsx syntax highlighting
au BufNewFile,BufRead *.jsx set ft=javascript
" SCSS, LESS
au BufRead,BufNewFile *.{scss,sass,less} set ft=css
au BufRead,BufNewFile *.txt call s:setupWrapping()
" make Python follow PEP8 ( http://www.python.org/dev/peps/pep-0008/ )
au FileType python set softtabstop=4 tabstop=4 shiftwidth=4 textwidth=79
" R scripts
au BufRead,BufNewFile *.r set ft=r
" save on losing focus
au FocusLost * :wa
" CtrlP configuration
let g:ctrlp_persistent_input=0
let g:ctrlp_split_window=1
let g:ctrlp_working_path_mode=2
let g:ctrlp_max_height=5
" NERDTree configuration
map <Leader><Leader> :NERDTreeToggle<CR>
" gist-vim defaults
if has("mac")
let g:gist_clip_command = 'pbcopy'
elseif has("unix")
let g:gist_clip_command = 'xclip -selection clipboard'
endif
let g:gist_detect_filetype = 1
let g:gist_open_browser_after_post = 1
" MacVIM shift+arrow-keys behavior (required in .vimrc)
let macvim_hig_shift_movement = 1
" delimitMate indentation
let delimitMate_expand_cr = 1
function! SmartIndent()
if delimitMate#WithinEmptyPair()
return "\<CR>\<ESC>\<UP>$o"
else
return "\<CR>"
endif
endfunction
imap <CR> <C-R>=SmartIndent()<CR>
if has('nvim')
" deoplete
let g:deoplete#enable_at_startup = 1
" neosnippet
let g:neosnippet#enable_completed_snippet = 1
imap <expr><TAB>
\ neosnippet#expandable_or_jumpable() ?
\ "\<Plug>(neosnippet_expand_or_jump)" :
\ pumvisible() ? "\<C-n>" : "\<TAB>"
" LanguageClient-neovim
nnoremap <F5> :call LanguageClient_contextMenu()<CR>
nnoremap <silent> K :call LanguageClient#textDocument_hover()<CR>
nnoremap <silent> gd :call LanguageClient#textDocument_definition({
\ 'gotoCmd': 'tabedit',
\ })<CR>
nnoremap <silent> <F2> :call LanguageClient#textDocument_rename()<CR>
let g:LanguageClient_serverCommands = {
\ 'javascript': ['flow', 'lsp'],
\ 'purescript': ['purescript-language-server', '--stdio']
\ }
" Ale
let b:ale_linter_aliases = {'html': 'javascript'}
endif