2020-01-15 14:14:30 -05:00
|
|
|
# .bashrc
|
|
|
|
|
|
|
|
|
|
# If not running interactively, don't do anything
|
|
|
|
|
[[ $- != *i* ]] && return
|
|
|
|
|
|
|
|
|
|
alias ls='ls --color=auto'
|
2020-01-20 15:48:48 -05:00
|
|
|
alias vlime='sbcl --load ~/.vim/plugins/vlime/lisp/start-vlime.lisp'
|
2020-01-15 14:14:30 -05:00
|
|
|
PS1='[\u@\h \W]\$ '
|
|
|
|
|
|
2020-02-17 22:07:39 -05:00
|
|
|
alias screenfetch='clear && screenfetch -t'
|
2020-01-15 14:14:30 -05:00
|
|
|
export DISPLAY=:0
|
|
|
|
|
export LIBGL_ALWAYS_INDIRECT=1
|
2020-01-20 15:48:48 -05:00
|
|
|
export FZF_DEFAULT_COMMAD="find -L"
|
2022-06-07 12:03:16 -04:00
|
|
|
export PATH="$PATH:/opt/mssql-tools/bin:/home/green/.local/bin"
|
2020-07-20 09:11:11 -04:00
|
|
|
|
|
|
|
|
stty -ixon # disable ctrl-s terminal freeze
|
2020-07-30 13:31:09 -04:00
|
|
|
|
|
|
|
|
# Enable GPG ssh auth
|
|
|
|
|
|
2022-06-25 06:10:37 -04:00
|
|
|
#export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket)
|
|
|
|
|
#gpgconf --launch gpg-agent
|
|
|
|
|
|
|
|
|
|
[ -f ~/.fzf.bash ] && source ~/.fzf.bash
|