This commit is contained in:
2019-02-01 22:49:15 -05:00
parent eb726a13c9
commit 64311dfb06
10 changed files with 45 additions and 21 deletions

View File

@@ -10,7 +10,7 @@ set -x GPG_TTY (tty)
# }}} login to X #
# input
xset r rate 200 60
xset r rate 200 70
fish_vi_key_bindings
set -x EDITOR nvim
set -x VISUAL nvim
@@ -28,12 +28,16 @@ set -U spv_dir "/home/kevin/coding/spotify-lib-vis"
source $spv_dir/src/api-keys.sh
# set -U PATH /usr/local/sbin /usr/local/bin /usr/bin /usr/bin/site_perl /usr/bin/vendor_perl /usr/bin/core_perl /home/kevin/linux-config/scripts
set -x PATH $PATH /home/kevin/linux-config/scripts (ruby -e 'print Gem.user_dir')/bin
# (ruby -e 'print Gem.user_dir')/bin
set -x PATH $PATH /home/kevin/linux-config/scripts /home/kevin/go/bin
set -x PASSWORD_STORE_CLIP_TIME 120
# fxn abbr's
abbr ag "grep-aliases"
abbr ev "evince-silent"
abbr gcamp "git-amend-push"
abbr gdf "git-diff-files"
abbr gpsmt "git-push-multiple"
abbr hs "scan-history"
abbr ut "unix-timestamp"
abbr z "zathura-silent"

View File

@@ -0,0 +1,3 @@
function evince-silent
evince $argv[1] > /dev/null 2>&1&
end

View File

@@ -0,0 +1,3 @@
function git-diff-files
git diff --name-only $argv[1] $argv[2]
end

View File

@@ -0,0 +1,5 @@
function git-push-multiple
git remote set-url --add --push origin $argv[1]
and git remote set-url --add --push origin $argv[2]
and git remote -v
end