this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update plugins 2014-06-27

+18 -12
+3
.gitmodules
··· 145 145 [submodule "vim/bundle/swapit"] 146 146 path = vim/bundle/swapit 147 147 url = git://github.com/mjbrownie/swapit.git 148 + [submodule "vim/bundle/vinegar"] 149 + path = vim/bundle/vinegar 150 + url = git://github.com/tpope/vim-vinegar.git
-1
vim/ftplugin/css.vim
··· 1 1 setlocal omnifunc=csscomplete#CompleteCSS 2 - ColorHighlight
-1
vim/ftplugin/sass.vim
··· 1 1 map <F9> :w !sass -c<CR> 2 - ColorHighlight
-1
vim/ftplugin/scss.vim
··· 1 1 map <F9> :w !scss -c<CR> 2 - ColorHighlight
+6 -4
vim/plugin/syntastic.vim
··· 1 1 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" 2 2 " => Syntastic 3 3 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" 4 - let g:syntastic_error_symbol = '✗✗' 5 - let g:syntastic_style_error_symbol = '✠✠' 6 - let g:syntastic_warning_symbol = '∆∆' 7 - let g:syntastic_style_warning_symbol = '≈≈' 4 + let g:syntastic_error_symbol = '✗' 5 + let g:syntastic_style_error_symbol = '✠' 6 + let g:syntastic_warning_symbol = '∆' 7 + let g:syntastic_style_warning_symbol = '≈' 8 + 9 + let g:syntastic_check_on_wq = 0
+7 -2
vim/plugin/unite.vim
··· 5 5 let g:unite_force_overwrite_statusline = 0 6 6 let g:unite_winheight = 10 7 7 8 + let g:unite_prompt = '» ' 9 + 10 + let g:unite_enable_short_source_names = 1 11 + 8 12 call unite#custom_source('file_rec,file_rec/async,file_mru,file,buffer,grep', 9 13 \ 'ignore_pattern', join([ 10 14 \ '\.git/', 11 15 \ '\vendor/', 12 16 \ ], '\|')) 13 17 14 - nnoremap <silent> <C-P> :<C-u>Unite -buffer-name=files buffer file_rec/async:!<cr> 18 + nnoremap <silent> <C-P> :<C-u>Unite -start-insert -buffer-name=files buffer file_rec/async:!<cr> 19 + nnoremap <leader>ur <Plug>(unite_redraw) 15 20 16 21 autocmd FileType unite call s:unite_settings() 17 22 ··· 23 28 imap <silent><buffer><expr> <C-v> unite#do_action('vsplit') 24 29 imap <silent><buffer><expr> <C-t> unite#do_action('tabopen') 25 30 31 + nmap <buffer> r <Plug>(unite_redraw) 26 32 nmap <buffer> <ESC> <Plug>(unite_exit) 27 33 endfunction 28 34 ··· 31 37 let g:unite_source_grep_command = 'ag' 32 38 let g:unite_source_grep_default_opts = '--nogroup --nocolor --column' 33 39 let g:unite_source_grep_recursive_opt = '' 34 - let g:unite_source_rec_async_command= 'ag --nocolor --nogroup --hidden -g ""' 35 40 endif
+2 -3
vimrc
··· 105 105 set nofoldenable "dont fold by default 106 106 set foldlevel=1 "this is just what i use 107 107 108 - " Automatically exit insert mode after stoping typing 109 - au CursorHoldI * stopinsert 110 - 111 108 """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" 112 109 " => Colors 113 110 """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" ··· 244 241 245 242 " Save as root 246 243 command! W w !sudo tee % > /dev/null 244 + let g:solarized_visibility = "high" 245 + let g:solarized_contrast = "high"