this repo has no description
1
fork

Configure Feed

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

Update Vim plugins

+38 -11
+3
.gitmodules
··· 99 99 [submodule "vim/bundle/airline"] 100 100 path = vim/bundle/airline 101 101 url = git://github.com/bling/vim-airline.git 102 + [submodule "vim/bundle/bufferline"] 103 + path = vim/bundle/bufferline 104 + url = git://github.com/bling/vim-bufferline.git
-1
ctags
··· 11 11 --exclude=tmp 12 12 13 13 -f .tags 14 -
+1 -1
gvimrc
··· 1 - set guifont=Inconsolata\ Medium\ 12 1 + set guifont=Inconsolata-dz\ for\ Powerline\ Medium\ 10 2 2 3 3 set guioptions-=T 4 4 set guioptions-=e
+34 -9
vimrc
··· 37 37 set wildmenu 38 38 39 39 " Ignore all automatic files and folders 40 - set wildignore=*.o,*~,*.pyc,.git,tmp,log,vendor,node_modules,coverage 40 + set wildignore=*.o,*~,*.pyc,.git,*/tmp/* 41 41 42 42 " Always show current position 43 43 set ruler ··· 68 68 69 69 " Line numbers are good 70 70 set number 71 + 72 + " Shorter timeout when exiting insert mode 73 + set ttimeoutlen=50 71 74 72 75 " Allow backspace in insert mode 73 76 set backspace=eol,start,indent ··· 113 116 set background=dark 114 117 colorscheme solarized 115 118 116 - " Powerline settings 117 - let g:Powerline_symbols = 'fancy' 118 - let g:Powerline_theme = 'solarized256' 119 - let g:Powerline_colorscheme = 'solarized256' 119 + """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" 120 + " => Airline 121 + """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" 122 + let g:airline_powerline_fonts = 1 123 + 124 + let g:airline#extensions#branch#enabled = 1 125 + let g:airline#extensions#branch#empty_message = '' 126 + 127 + let g:airline#extensions#syntastic#enabled = 1 128 + 129 + let g:airline#extensions#tagbar#enabled = 1 120 130 121 131 " Set utf8 as standard encoding and en_US as the standard language 122 132 set encoding=utf8 ··· 129 139 " http://items.sjbach.com/319/configuring-vim-right 130 140 set hidden 131 141 132 - " Indent Guides 142 + """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" 143 + " => Indent Guides 144 + """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" 133 145 let g:indent_guides_start_level = 2 134 146 let g:indent_guides_guide_size = 1 135 147 ··· 265 277 highlight Pmenu ctermbg=238 gui=bold 266 278 267 279 let g:SuperTabDefaultCompletionType = "context" 268 - "let g:SuperTabMappingForward = '<C-Space>' 269 - "let g:SuperTabMappingBackward = '<S-C-Space>' 280 + let g:SuperTabMappingForward = '<C-Tab>' 281 + let g:SuperTabMappingBackward = '<S-Tab>' 270 282 271 283 """"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" 272 284 " => Tagbar ··· 281 293 let g:markdown_extensions=["md", "markdown"] 282 294 let g:gist_clip_command = 'xclip -selection clipboard' 283 295 284 - " Syntastic 296 + """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" 297 + " => Syntastic 298 + """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" 285 299 let g:syntastic_error_symbol = '✗✗' 286 300 let g:syntastic_style_error_symbol = '✠✠' 287 301 let g:syntastic_warning_symbol = '∆∆' 288 302 289 303 let g:syntastic_style_warning_symbol = '≈≈' 290 304 305 + """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" 306 + " => CtrlP 307 + """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" 308 + let g:ctrlp_custom_ignore = { 309 + \ 'dir': '\v(\.(git|hg|svn)|(bundle|node_modules|log))$', 310 + \ 'file': '\v\.(log)$', 311 + \ } 312 + 313 + """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" 314 + " => Extra commands 315 + """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" 291 316 cmap w!! %!sudo tee > /dev/null % 292 317 293 318 command! Todo noautocmd vimgrep /TODO\|FIXME/j **/*.{py,rb,css,js,coffee,c,cpp,c++,cxx,h,hpp,h++,hxx,scss,sass} | cw