this repo has no description
1
fork

Configure Feed

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

Setup better Git aliases

+19 -16
+2 -6
fish/functions/g.fish
··· 1 - function g --description 'Shortcut for Git. Less typing, more work' --wraps git 2 - if which hub ^/dev/null >/dev/null 3 - hub $argv 4 - else 5 - git $argv 6 - end 1 + function g --description 'Less typing more work!' --wraps git 2 + git $argv 7 3 end
+7
fish/functions/git.fish
··· 1 + function git --description 'Git wrapper that run hub fi avaliable' 2 + if which hub ^/dev/null >/dev/null 3 + hub $argv 4 + else 5 + command git $argv 6 + end 7 + end
+5 -4
peru.yaml
··· 5 5 pathogen: vim/autoload 6 6 7 7 vim-airline: vim/bundle/airline 8 + vim-autoclose: vim/bundle/autoclose 8 9 vim-bufferline: vim/bundle/bufferline 9 10 vim-bundler: vim/bundle/bundler 10 11 vim-commentary: vim/bundle/commentary 11 - vim-delimmate: vim/bundle/delimmate 12 12 vim-editorconfig: vim/bundle/editorconfig 13 13 vim-fish: vim/bundle/fish 14 14 vim-fugitive: vim/bundle/fugitive ··· 47 47 git module spark: 48 48 url: https://github.com/holman/spark.git 49 49 files: spark 50 + rev: 983244741db48965905e4fe9bcef94b4e2595783 50 51 51 52 git module vim-solarized: 52 53 url: https://github.com/altercation/vim-colors-solarized ··· 158 159 url: https://github.com/wting/rust.vim.git 159 160 rev: 3ed6c6afb4a1f5d1f7edc3ba0eb61fc723d49bbe 160 161 161 - git module vim-delimmate: 162 - url: https://github.com/Raimondi/delimitMate.git 163 - rev: fe1983cfa1cf0924ac9b2b8576255daffd36afbf 162 + git module vim-autoclose: 163 + url: https://github.com/Townk/vim-autoclose.git 164 + rev: a9a3b7384657bc1f60a963fd6c08c63fc48d61c3 164 165 165 166 git module vim-editorconfig: 166 167 url: https://github.com/editorconfig/editorconfig-vim.git
+3 -4
vim/plugin/unite.vim
··· 1 1 call unite#filters#matcher_default#use(['matcher_fuzzy']) 2 - call unite#custom#source('buffer,file,file_rec', 3 - \ 'sorters', 'sorter_selecta') 2 + call unite#custom#source('buffer,file,file_rec', 'sorters', 'sorter_selecta') 4 3 5 4 let g:unite_split_rule = "botright" 6 - let g:unite_force_overwrite_statusline = 0 7 - let g:unite_winheight = 10 5 + let g:unite_force_overwrite_statusline = 1 6 + " let g:unite_winheight = 10 8 7 9 8 let g:unite_prompt = '» ' 10 9
+2 -2
vimrc
··· 182 182 " Buffers 183 183 noremap <F5> :bprev<CR> 184 184 noremap <F6> :bnext<CR> 185 - noremap <leader>b :Unite -no-split buffer<CR> 185 + noremap <leader>b :Unite -buffer-name=buffers -immediately -no-split buffer<CR> 186 186 187 187 " Search 188 188 noremap <silent> <leader><space> :nohlsearch<CR> ··· 244 244 " => Extra commands 245 245 """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" 246 246 247 - command! Ag Unite grep:. 247 + command! Ag Unite -auto-preview -no-split -buffer-name=Ag grep:. 248 248 249 249 " Remove all trailing whitespaces 250 250 command! Clean %s/\s\+$//e | nohlsearch