this repo has no description
1
fork

Configure Feed

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

Retab all Fish sources

+45 -37
+7 -6
fish/config.fish
··· 1 1 if not functions -q fundle 2 - eval (curl -sfL https://git.io/fundle-install) 2 + eval (curl -sfL https://git.io/fundle-install) 3 3 end 4 4 5 5 fundle plugin 'tuvistavie/fish-completion-helpers' ··· 11 11 alias ssh="env TERM=xterm-256color ssh" 12 12 13 13 if status --is-interactive 14 - enable direnv hook fish 15 - enable hub alias -s 16 - enable jump shell fish 17 - enable rbenv init - 14 + enable direnv hook fish 15 + enable hub alias -s 16 + enable jump shell fish 17 + enable rbenv init - 18 18 19 - test -e {$HOME}/.iterm2_shell_integration.fish ; and source {$HOME}/.iterm2_shell_integration.fish 19 + test -e {$HOME}/.iterm2_shell_integration.fish 20 + and source {$HOME}/.iterm2_shell_integration.fish 20 21 end
+1 -1
fish/functions/available.fish
··· 1 1 function available 2 - which $argv[1] ^/dev/null >/dev/null 2 + which $argv[1] ^/dev/null >/dev/null 3 3 end
+1 -1
fish/functions/b.fish
··· 1 1 function b --wrap bundle 2 - bundle $argv 2 + bundle $argv 3 3 end 4 4
+1 -1
fish/functions/be.fish
··· 1 1 function be --wrap 'bundle exec' 2 - bundle exec $argv 2 + bundle exec $argv 3 3 end
+1 -1
fish/functions/e.fish
··· 1 1 function e --wraps $EDITOR 2 - eval $EDITOR $argv 2 + env $EDITOR $argv 3 3 end
+2 -1
fish/functions/enable.fish
··· 1 1 function enable 2 - available "$argv[1]"; and source (eval "$argv" | psub) 2 + available "$argv[1]" 3 + and source (eval "$argv" | psub) 3 4 end
+1 -1
fish/functions/g.fish
··· 1 1 function g --description 'Less typing more work!' --wrap git 2 - git $argv 2 + git $argv 3 3 end
+1 -1
fish/functions/gdb.fish
··· 1 1 function gdb --wrap gdb 2 - command gdb -q $argv 2 + command gdb -q $argv 3 3 end
+1 -1
fish/functions/map.fish
··· 1 1 function map 2 - xargs -n1 $argv 2 + xargs -n1 $argv 3 3 end
+8 -8
fish/functions/mcd.fish
··· 1 1 function mcd --description="Create a directory and set CWD" 2 - command mkdir $argv 3 - if test $status = 0 4 - switch $argv[(count $argv)] 5 - case '-*' 6 - case '*' 7 - cd $argv[(count $argv)] 8 - return 2 + command mkdir $argv 3 + if test $status = 0 4 + switch $argv[(count $argv)] 5 + case '-*' 6 + case '*' 7 + cd $argv[(count $argv)] 8 + return 9 + end 9 10 end 10 - end 11 11 end
+1 -1
fish/functions/p.fish
··· 1 1 function p 2 - pretty $argv 2 + pretty $argv 3 3 end
+1 -1
fish/functions/pretty.fish
··· 1 1 function pretty 2 - pygmentize -f terminal -g $argv | less -RS 2 + pygmentize -f terminal -g $argv | less -RS 3 3 end
+8 -8
fish/functions/rails.fish
··· 1 1 function rails 2 - if [ -d './bin' ] 3 - ./bin/rails $argv 4 - else 5 - if not bundle exec rails $argv 6 - echo 'You are not in Rails project' 7 - return 1 2 + if [ -d './bin' ] 3 + ./bin/rails $argv 8 4 else 9 - return $status 5 + if not bundle exec rails $argv 6 + echo 'You are not in Rails project' 7 + return 1 8 + else 9 + return $status 10 + end 10 11 end 11 - end 12 12 end
+9 -5
fish/functions/rake.fish
··· 1 1 function rake 2 - if begin; [ -d './bin' ]; and [ -x './bin/rake' ]; end 3 - ./bin/rake $argv 4 - else 5 - bundle exec rake $argv; or command rake 6 - end 2 + if begin 3 + [ -d './bin' ] 4 + and [ -x './bin/rake' ] 5 + end 6 + ./bin/rake $argv 7 + else 8 + bundle exec rake $argv 9 + or command rake 10 + end 7 11 end
+2
nvim/after/ftplugin/fish.vim
··· 1 + setlocal tabstop=4 softtabstop=4 shiftwidth=4 2 + setlocal equalprg=fish_indent