all repos — dotfiles @ 69ac8162fd2dd9ac9eeef398e102914b8cd8866a

my *nix dotfiles

Don't maintain separate fish configs
Anirudh Oppiliappan x@icyphox.sh
Wed, 07 Apr 2021 21:01:12 +0530
commit

69ac8162fd2dd9ac9eeef398e102914b8cd8866a

parent

1be1fee4dd9f58f190d13eff4cfc109985b6267f

20 files changed, 0 insertions(+), 127 deletions(-)

jump to
D darwin/fish/completions/n.fish

@@ -1,9 +0,0 @@

-complete -c n -f -r - -set -l paths "" - -for f in $MARKPATH/* - set -a paths (basename $f) -end - -complete -c n -a "$paths"
D darwin/fish/config.fish

@@ -1,30 +0,0 @@

-set fish_greeting - -set -gx PATH ~/bin ~/.local/bin ~/leet/Nim/bin ~/.nimble/bin \ -/usr/local/bin /usr/bin /bin /sbin /usr/sbin /usr/X11R6/bin \ -~/go/bin /usr/local/go/bin - -set -gx EDITOR nvim -set -gx BROWSER iridium -set -gx PW_KEY x@icyphox.sh - -# source ~/.config/fish/functions/marks.fish - -function fish_user_key_bindings - bind \cr '__fzy_history (commandline -b)' -end - -# workaround for slow completions on macOS -function __fish_describe_command; end - -# The next line updates PATH for the Google Cloud SDK. -if [ -f '/Users/icy/Downloads/google-cloud-sdk/path.fish.inc' ]; . '/Users/icy/Downloads/google-cloud-sdk/path.fish.inc'; end -set -g fish_user_paths "/usr/local/opt/node@14/bin" $fish_user_paths -set -gx PATH $PATH $HOME/.krew/bin - - -# pyenv init -if command -v pyenv 1>/dev/null 2>&1 - pyenv init - | source -end -
D darwin/fish/functions/__fzy_history.fish

@@ -1,6 +0,0 @@

-# Defined in /tmp/fish.wuVePn/__fzy_history.fish @ line 1 -function __fzy_history - history | fzy | read -l cmd - commandline -f repaint - commandline $cmd -end
D darwin/fish/functions/awssh.fish

@@ -1,4 +0,0 @@

-# Defined in /tmp/fish.luUeJj/awssh.fish @ line 2 -function awssh - ssh ubuntu@$argv -i ~/.ssh/cometchat-aws.pem -end
D darwin/fish/functions/clip.fish

@@ -1,4 +0,0 @@

-# Defined in - @ line 1 -function clip --wraps='xclip -sel c' --description 'alias clip=xclip -sel c' - xclip -sel c $argv; -end
D darwin/fish/functions/f.fish

@@ -1,6 +0,0 @@

-# Defined in /tmp/fish.SD03YE/f.fish @ line 2 -function f - fff $argv - set -q XDG_CACHE_HOME; or set XDG_CACHE_HOME $HOME/.cache - cd (cat $XDG_CACHE_HOME/fff/.fff_d) -end
D darwin/fish/functions/fish_prompt.fish

@@ -1,13 +0,0 @@

-function fish_prompt --description 'Write out the prompt' - set -l cyan (set_color cyan) - set -l prefix '$' - - printf '\n' - set_color cyan - printf '%s' (prompt_pwd) - set_color normal - printf '%s\n' (__fish_git_prompt)(__fish_git_prompt_dirty) - set_color white - printf '%s ' $prefix - set_color normal - end
D darwin/fish/functions/ga.fish

@@ -1,4 +0,0 @@

-# Defined in - @ line 1 -function ga --wraps='git add' --description 'alias ga=git add' - git add $argv; -end
D darwin/fish/functions/gc.fish

@@ -1,4 +0,0 @@

-# Defined in /tmp/fish.XtHOuP/gc.fish @ line 2 -function gc --wraps='git commit -v' --description 'alias gc=git commit -v' - git commit -v $argv; -end
D darwin/fish/functions/gd.fish

@@ -1,4 +0,0 @@

-# Defined in - @ line 1 -function gd --wraps='git diff --minimal' --description 'alias gd=git diff --minimal' - git diff --minimal $argv; -end
D darwin/fish/functions/ggp.fish

@@ -1,4 +0,0 @@

-# Defined in /tmp/fish.8L7BWS/ggp.fish @ line 2 -function ggp - git push origin (git branch --show-current) -end
D darwin/fish/functions/gpa.fish

@@ -1,4 +0,0 @@

-# Defined in - @ line 1 -function gpa --wraps='git push all master' --description 'alias gpa=git push all master' - git push all master $argv; -end
D darwin/fish/functions/gst.fish

@@ -1,4 +0,0 @@

-# Defined in /tmp/fish.9tYpdR/gst.fish @ line 2 -function gst --wraps='git status --short' --description 'alias gst=git status --short' - git status --short $argv; -end
D darwin/fish/functions/m.fish

@@ -1,4 +0,0 @@

-# Defined in - @ line 1 -function m --wraps=nail --description 'alias m=nail' - s-nail $argv; -end
D darwin/fish/functions/o.fish

@@ -1,4 +0,0 @@

-# Defined in - @ line 1 -function o --wraps=xdg-open --description 'alias o=xdg-open' - xdg-open $argv; -end
D darwin/fish/functions/qwerty.fish

@@ -1,5 +0,0 @@

-# Defined in /tmp/fish.kneo2V/qwerty.fish @ line 2 -function qwerty --wraps=setxkbmap\ -option\ \'grp:alt_shift_toggle\'\ -layout\ us,ru\ -variant\ \',phonetic\'\ -option\ \'compose:caps\' --description alias\ qwerty=setxkbmap\ -option\ \'grp:alt_shift_toggle\'\ -layout\ us,ru\ -variant\ \',phonetic\'\ -option\ \'compose:caps\' - setxkbmap -option 'grp:alt_shift_toggle' -layout us,ru -variant ',phonetic' -option 'compose:caps' $argv; - export KEYBOARD_LAYOUT="qwerty" -end
D darwin/fish/functions/tb.fish

@@ -1,4 +0,0 @@

-# Defined in /tmp/fish.2y8yjw/tb.fish @ line 1 -function tb - nc termbin.com 9999 | xclip -sel c -end
D darwin/fish/functions/vb.fish

@@ -1,4 +0,0 @@

-# Defined in - @ line 1 -function vb --wraps='vite build' --description 'alias vb=vite build' - vite build $argv; -end
D darwin/fish/functions/vim.fish

@@ -1,4 +0,0 @@

-# Defined in - @ line 1 -function vim --wraps=nvim --description 'alias vim=nvim' - nvim $argv; -end
D darwin/fish/functions/workman.fish

@@ -1,6 +0,0 @@

-# Defined in /tmp/fish.pjZWGS/workman.fish @ line 2 -function workman --wraps='setxkbmap us; xmodmap xmodmap/xmodmap.workman && xset r 66' --description 'alias workman=setxkbmap us; xmodmap xmodmap/xmodmap.workman && xset r 66' - setxkbmap -option 'grp:alt_shift_toggle' -layout us,ru -variant ',phonetic' -option 'compose:caps' - xmodmap ~/.xmodmap - export KEYBOARD_LAYOUT="workman" -end