Add conky config; add alias, global var, binding; update fish scripts

This commit is contained in:
mitchell 2021-12-16 16:51:31 -05:00
parent 662cf1bcdc
commit 91ebbe8be8
10 changed files with 234 additions and 83 deletions

View file

@ -2,6 +2,7 @@ function define_aliases -a uname -d 'Defines aliases for commonly used commands'
alias rcp 'rsync -aP'
alias vg 'vagrant'
alias tf 'terraform'
alias gco 'gcloud compute'
alias tocb 'xclip -in -selection clipboard'
alias fromcb 'xclip -out -selection clipboard'
alias ssh-rm 'ssh-keygen -f ~/.ssh/known_hosts -R'

View file

@ -6,6 +6,7 @@ function define_global_variables -d 'Defines all and exclusively globally export
set -gx EDITOR nvim
set -gx BROWSER firefox
set -gx DIFFPROG nvim -d
set -gx FZF_CTRL_T_COMMAND 'ag --hidden --ignore .git -g ""'
set -gx FZF_DEFAULT_COMMAND 'ag --hidden --ignore .git -g ""'

View file

@ -5,4 +5,5 @@ function fish_user_key_bindings
bind --mode insert ,p 'nvim +FZF; commandline -f repaint'
bind --mode insert ,w 'nvim +VimwikiIndex; commandline -f repaint'
bind --mode insert ,n 'n; commandline -f repaint'
bind --mode insert ,s 'sysz; commandline -f repaint'
end