-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvimrc
163 lines (129 loc) · 5.6 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
" enable pathogen to load vim bundles in ~/.vim/bundle/
" Generate help dogumentation with pathogen helptags helper
execute pathogen#infect()
execute pathogen#helptags()
" ==== Visual Settings ==== "
" --- Color --- "
set background=dark " Tell vim that colorscheme is on a dark background
colorscheme jellybeans " Use the Jellybeans color scheme
set relativenumber " Line numbers relative to the cursor
set ruler " Turn on rulers
set number " Show line numbers
set numberwidth=5 " Min number of characters to use for the line number column
set cursorline " Underlines the cursors current line in the file
set scrolloff=5 "Minimum number of lines of context to keep around cursor
set updatetime=500 "write swap file if nothing is typed for 500ms
" Works for iTerm
let &t_SI = "\<Esc>]50;CursorShape=1\x7" " insert mode vertical bar cursor
let &t_EI = "\<Esc>]50;CursorShape=0\x7" " all other modes bloack cursor
syntax on " enable syntax highlighting
autocmd BufRead,BufNewFile *.md set filetype=markdown
autocmd BufRead,BufNewFile *.rabl set filetype=ruby
autocmd BufRead,BufNewFile *.slim set filetype=haml
" Jump to last cursor position unless it's invalid or in an event handler
autocmd BufReadPost *
\ if line("'\"") > 0 && line("'\"") <= line("$") |
\ exe "normal g`\"" |
\ endif
" ==== Performance Settings ==== "
" set regexp engine to old one full featured one. Turns out that the newer NFA
" regexp engine does NOT play nice with Ruby lang syntax highlighting.
" Switching to the older non NFA regexp engine drastically increases
" performance.
if exists('+regexpengine')
set regexpengine=1
endif
" ==== Feature Settings ==== "
set shell=zsh " The shell to use is zsh
set nocompatible " Tell vim NOT to run in Vi compatible mode
filetype plugin indent on "smart indenting using ==
" --- Tabs --- "
set expandtab " Use spaces to skip or insert when <BS>ing or <Tab>ing
set tabstop=2 " Two spaces for tab
set shiftwidth=2 " Number of spaces to use in each autoindent step
set softtabstop=2 " Number of spaces to skip or insert when <BS>ing or <Tab>
set shiftround " Rounds the tab spaces when using > command
let mapleader = "," " Remap <Leader> key from \ (backslash) to , (comma)
" remap esc key for exiting insert mode
:imap jk <Esc>
" cyphactor/vim-open-alternate
nnoremap <leader>m :OpenAlternate<cr>
set textwidth=80 " Set the word wrap character limit to 80
set history=10000 " Number of : command entries to keep in history
" Ex mode command history behavior without arrow keys
cnoremap <C-p> <Up>
cnoremap <C-n> <Down>
set undolevels=1000 " Larger number of levels of undo
set showmatch " Show matching bracket when a bracket is inserted
set showcmd " Show imcomplete command
set backspace=2 " Backspace deletes like most programs in insert mode
" --- Searching --- "
set incsearch " Find the next match as we type the search
set hlsearch " Highlight searches matching the search pattern
set ignorecase " ignore case when searching
set complete=.,w,b,u,t " current buffer, window buffers, loaded buffers,
" unloaded buffers, tags
" Overwrite Jellybeans :hi Search
hi Search cterm=reverse
map <leader>c :nohlsearch<cr>
set cmdheight=2 " Make the command entry area consume two rows
set showtabline=2 " ALWAYS show tab line at the top
" --- Spellcheck --- "
autocmd FileType markdown setlocal spell " Enable spellchecking in Markdown
autocmd BufRead,BufNewFile *.md setlocal spell " Spell check md files
autocmd FileType gitcommit setlocal spell " Spell check git commits
set complete+=kspell " complete words in insert mode
" --- Tab complete --- "
" tabspace at beginning of line or complete word if not begining
set wildmenu " Make tab completion for files/buffers act like bash
set wildmode=list:longest,list:full " Tab complete show suggestion list, longest first
function! InsertTabWrapper() " tabspace at begining of line or complete word
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>
" --- No Arrow Keys --- "
map <Left> :echo "STOP IT!"<cr>
map <Right> :echo "STOP IT!"<cr>
map <Up> :echo "STOP IT!"<cr>
map <Down> :echo "STOP IT!"<cr>
" --- netrw --- "
let g:netrw_liststyle = 1 " default tree structure
let g:netrw_use_errorwindow = 0
"let g:netrw_banner=0 " hide netrw banner
"let g:netrw_browse_split = 4 " open file in previous window
"let g:netrw_winsize = 25 " directory explorer at 25%
map <leader>n :e .<CR>
" --- CTRL P --- "
" search tags
map <leader>gt :CtrlPTag<cr>
" search current content of buffer
map <leader>p :CtrlP .<cr>
" search inside all files
map <leader>P :CtrlP %%<cr>
" search buffer
map <leader>b :CtrlPBuffer<cr>
let g:ctrlp_show_hidden = 1
" --- Ack / Ag --- "
if executable('ag')
let g:ackprg = 'ag --nogroup --nocolor --column' " use Ag with ack.vim
endif
nnoremap <leader>f :Ack!<space>
" --- cyphactor/Test Recall --- "
map <leader>t :call RunNearestTest()<cr>
map <leader>T :call RunAllTestsInCurrentTestFile()<cr>
map <leader>a :call RunAllRSpecTests()<cr>
"map <leader>c :call RunAllCucumberFeatures()<cr>
"map <leader>w :call RunWipCucumberFeatures()<cr>
let g:vim_test_recall_rspec_command = 'bundle exec rspec'
:map <Leader>A :!RAILS_ENV=test bundle exec rspec -f d<cr>
" --- gitgutter --- "
" Toggle row highlighting
map <leader>gh :GitGutterLineHighlightsToggle<cr>
" prevent git gutter from moving the line column with changes
let g:gitgutter_sign_column_always = 1