@@ -25,7 +25,7 @@ map Y y$
25
25
" Open tag under cursor in new tab
26
26
map <C-T> :tab split<CR> :exec("tag ".expand("<cword> "))<CR>
27
27
" Copy current file path to system clipboard
28
- nrmap <silent> cp :let @* = expand (" %" )<CR>
28
+ nmap <silent> cp :let @*=expand("%")<CR>
29
29
" Fast saving
30
30
nmap ,w :w!<CR>
31
31
@@ -57,8 +57,6 @@ nnoremap <silent> - :vertical resize -5<CR>
57
57
nnoremap <silent> <leader> + :resize +5<CR>
58
58
nnoremap <silent> <leader> - :resize -5<CR>
59
59
60
- " """""""""""""""""""""""""""""""""""Colors
61
- colorscheme jellybeans
62
60
63
61
" """""""""""""""""""""""""""""""""""Tabs
64
62
" Insert spaces instead of tabs it inserts (if defined) 'softtabstop' space chars
@@ -117,6 +115,8 @@ filetype plugin indent on
117
115
" (runtime == source+relative path to vim installation dir)
118
116
runtime macros/matchit.vim
119
117
118
+ " """""""""""""""""""""""""""""""""""Colors
119
+ colors jellybeans
120
120
" """""""""""""""""""""""""""""""""""Syntastic
121
121
let g: syntastic_error_symbol = ' ✗'
122
122
let g: syntastic_auto_loc_list = 2
@@ -231,8 +231,11 @@ cnoremap <C-p> <Up>
231
231
cnoremap <C-n> <Down>
232
232
" """""""""""""""""""""""""""""""""""SplitJoin
233
233
nmap <Leader> k :SplitjoinJoin<cr>
234
+ nmap ,k :SplitjoinJoin<cr>
234
235
nmap <Leader> j :SplitjoinSplit<cr>
236
+ nmap ,j :SplitjoinSplit<cr>
235
237
236
238
" """""""""""""""""""""""""""""""""""Rails
237
239
" Open Alternate file in vertical split
238
240
nmap <leader> a :AV<CR>
241
+ nmap ,a :AV<CR>
0 commit comments