Update
This commit is contained in:
@@ -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"
|
||||
|
||||
3
fish/.config/fish/functions/evince-silent.fish
Normal file
3
fish/.config/fish/functions/evince-silent.fish
Normal file
@@ -0,0 +1,3 @@
|
||||
function evince-silent
|
||||
evince $argv[1] > /dev/null 2>&1&
|
||||
end
|
||||
3
fish/.config/fish/functions/git-diff-files.fish
Normal file
3
fish/.config/fish/functions/git-diff-files.fish
Normal file
@@ -0,0 +1,3 @@
|
||||
function git-diff-files
|
||||
git diff --name-only $argv[1] $argv[2]
|
||||
end
|
||||
5
fish/.config/fish/functions/git-push-multiple.fish
Normal file
5
fish/.config/fish/functions/git-push-multiple.fish
Normal 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
|
||||
Reference in New Issue
Block a user