-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvimrc
More file actions
263 lines (206 loc) · 7.56 KB
/
Copy pathvimrc
File metadata and controls
263 lines (206 loc) · 7.56 KB
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
" Use Vim settings, rather then Vi settings. This setting must be as early as
" possible, as it has side effects.
set nocompatible
set shell=$SHELL\ -l
" Leader
let mapleader = ","
set backspace=2 " Backspace deletes like most programs in insert mode
set nobackup
set nowritebackup
set noswapfile " http://robots.thoughtbot.com/post/18739402579/global-gitignore#comment-458413287
set history=50
set ruler " show the cursor position all the time
set showcmd " display incomplete commands
set incsearch " do incremental searching
set ignorecase " searches are case insensitive...
set laststatus=2 " Always display the status line
set autowrite " Automatically :write before running commands
set hlsearch
"set noballooneval " Hide code evaluation tooltips
" Switch syntax highlighting on, when the terminal has colors
" Also switch on highlighting the last used search pattern.
if (&t_Co > 2 || has("gui_running")) && !exists("syntax_on")
syntax on
endif
filetype plugin indent on
augroup vimrcEx
autocmd!
" When editing a file, always jump to the last known cursor position.
" Don't do it for commit messages, when the position is invalid, or when
" inside an event handler (happens when dropping a file on gvim).
autocmd BufReadPost *
\ if &ft != 'gitcommit' && line("'\"") > 0 && line("'\"") <= line("$") |
\ exe "normal g`\"" |
\ endif
" Set syntax highlighting for specific file types
autocmd BufRead,BufNewFile Appraisals set filetype=ruby
autocmd BufRead,BufNewFile *.md set filetype=markdown
" Enable spellchecking for Markdown
autocmd FileType markdown setlocal spell
" Automatically wrap at 80 characters for Markdown
autocmd BufRead,BufNewFile *.md setlocal textwidth=80
" Automatically wrap at 72 characters and spell check git commit messages
autocmd FileType gitcommit setlocal textwidth=72
autocmd FileType gitcommit setlocal spell
" Allow stylesheets to autocomplete hyphenated words
autocmd FileType css,scss,sass setlocal iskeyword+=-
" Source the vimrc file after saving it
autocmd bufwritepost .vimrc source $MYVIMRC
augroup END
" ,v opens the vimrc file in a new tab
nmap <leader>v :tabedit $MYVIMRC<CR>
" Softtabs, 2 spaces
set tabstop=2
set shiftwidth=2
set shiftround
set expandtab
" Display extra whitespace
" set list listchars=tab:»·,trail:·,nbsp:·,eol:¬
set list listchars=tab:»·,trail:·,nbsp:·
" F3: Toggle list (display unprintable characters).
nmap <F3> :set list!<CR>
" Use The Silver Searcher https://github.com/ggreer/the_silver_searcher
if executable('ag')
" Use Ag over Grep
set grepprg=ag\ --nogroup\ --nocolor
" Use ag in CtrlP for listing files. Lightning fast and respects .gitignore
let g:ctrlp_user_command = 'ag %s -l --nocolor -g ""'
" ag is fast enough that CtrlP doesn't need to cache
let g:ctrlp_use_caching = 0
endif
" Color scheme
" set background=dark " for the one dark version
colorscheme dracula
highlight NonText ctermbg=0 cterm=NONE gui=NONE
highlight Folded guibg=#0A0A0A guifg=#9090D0
set guifont=Inconsolata:h14.00 "best font ever
" Make it obvious where 80 characters is
set textwidth=80
set colorcolumn=+1
" Numbers
set number
set relativenumber
set numberwidth=5
" Tab completion
" will insert tab at beginning of line,
" will use completion if not at beginning
set wildmode=list:longest,list:full
function! InsertTabWrapper()
let col = col('.') - 1
if !col || getline('.')[col - 1] !~ '\k'
return "\<tab>"
else
return "\<c-p>"
endif
endfunction
inoremap <Tab> <c-r>=InsertTabWrapper()<cr>
inoremap <S-Tab> <c-n>
" Switch between the last two files
nnoremap <leader><leader> <c-^>
" Save files with leader-w
nnoremap <Leader>w :w<CR>
" Get off my lawn
nnoremap <Left> :echoe "Use h"<CR>
nnoremap <Right> :echoe "Use l"<CR>
nnoremap <Up> :echoe "Use k"<CR>
nnoremap <Down> :echoe "Use j"<CR>
" Hitting F5 will clean out all trailing whitespaces and tabs
nnoremap <silent> <F5> :let _s=@/<Bar>:%s/\s\+$//e<Bar>:let @/=_s<Bar>:nohl<CR>:retab<CR>
" Bubble single lines, in normal mode cmd + up/down
nmap <C-Up> ddkP
nmap <C-Down> ddp
" Bubble multiple lines in visual mode, hold ctrl + opn + cmd + up/down
vmap <C-D-M-Up> xkP`[V`]
vmap <C-D-M-Down> xp`[V`]
" Hitting D will duplicate whatever is selected directly below
" Handy when writing tests
vmap D y'>p
" Opening files located in the same directory as the current file
map <leader>ew :e <C-R>=expand("%:p:h") . "/" <CR>
map <leader>es :sp <C-R>=expand("%:p:h") . "/" <CR>
map <leader>ev :vsp <C-R>=expand("%:p:h") . "/" <CR>
map <leader>et :tabe <C-R>=expand("%:p:h") . "/" <CR>
" Use the os_x_iterm2 runner
let g:rspec_runner = 'os_x_iterm'
" Treat <li> and <p> tags like the block tags they are
let g:html_indent_tags = 'li\|p'
" Open new split panes to right and bottom, which feels more natural
set splitbelow
set splitright
" Use ctrl-[hjkl] to select the active split!
nnoremap <C-j> <C-w>j
nnoremap <C-k> <C-w>k
nnoremap <C-h> <C-w>h
nnoremap <C-l> <C-w>l
" configure syntastic syntax checking to check on open as well as save
let g:syntastic_check_on_open=1
let g:syntastic_html_tidy_ignore_errors=[" proprietary attribute \"ng-"]
" Toggle spell checking on and off with `,s`
nmap <silent> <leader>s :set spell!<CR>
" Set region to British English
set spelllang=en_gb
" Set spellfile to location that is guaranteed to exist, can be symlinked to
" Dropbox or kept in Git and managed outside of thoughtbot/dotfiles using rcm.
set spellfile=$HOME/.vim-spell-en.utf-8.add
" Autocomplete with dictionary words when spell check is on
set complete+=kspell
" Always use vertical diffs
set diffopt=vertical
" Specify eslint as a fixer for JavaScript
let g:ale_fixers = {"javascript": ["eslint"]}
" Fix files automatically on save
let g:ale_fix_on_save = 1
" Navigate between errors and warnings.
" You can map the keys Ctrl+j and Ctrl+k to moving between errors
nmap <silent> <C-k> <Plug>(ale_previous_wrap)
nmap <silent> <C-j> <Plug>(ale_next_wrap)
" Local config
if filereadable($HOME . "/.vimrc.local")
source ~/.vimrc.local
endif
filetype off
set rtp+=~/.vim/bundle/Vundle.vim/
call vundle#begin()
" Let Vundle manage Vundle
Bundle 'gmarik/Vundle.vim'
" Define bundles via Github repos
Bundle 'chrisbra/Colorizer'
Bundle 'christoomey/vim-titlecase'
Bundle 'cohama/lexima.vim'
Bundle 'ctrlpvim/ctrlp.vim'
Bundle 'dense-analysis/ale'
Bundle 'elixir-lang/vim-elixir'
Bundle 'janko-m/vim-test'
Bundle 'mileszs/ack.vim'
Bundle 'preservim/nerdtree'
Bundle 'slashmili/alchemist.vim'
Bundle 'slim-template/vim-slim.git'
Bundle 'tpope/vim-commentary'
Bundle 'tpope/vim-rails'
Bundle 'tpope/vim-surround'
Bundle 'urso/haskell_syntax.vim'
call vundle#end()
filetype on
let g:ale_linters = {'ruby': ['standardrb']}
" a new operator to titlecase text
let g:titlecase_map_keys = 0
nmap <leader>gt <Plug>Titlecase
vmap <leader>gt <Plug>Titlecase
nmap <leader>gT <Plug>TitlecaseLine
" Use ag in CtrlP for listing files. Lightning fast and respects .gitignore
let g:ctrlp_user_command = 'ag -Q -l --nocolor --hidden --ignore-dir .git -g "" %s'
set wildignore+=*/tmp/*,*.so,*.swp,*.zip,*.o,*.obj,.git,bower_components/**,**/node_modules/**,_build/**,deps/**
" vim-test mappings
nmap <silent> <leader>t :TestNearest<CR>
nmap <silent> <leader>T :TestFile<CR>
nmap <silent> <leader>a :TestSuite<CR>
nmap <silent> <leader>l :TestLast<CR>
nmap <silent> <leader>gt :TestVisit<CR>
"run mix tests right from vim
map <leader><space> :!mix test<CR>
" turn colorizer on for specific file types, but not in comments
let g:colorizer_auto_filetype='css,html'
let g:colorizer_skip_comments = 1
" Ctrl+n to to toggle NERDTree
map <C-n> :NERDTreeToggle<CR>
set exrc