diff options
author | Alex Auvolat <alex@adnab.me> | 2023-01-17 12:45:46 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2023-01-17 12:45:46 +0100 |
commit | d47dd5aa3882aea1a8eff4fb9faa4881274559dc (patch) | |
tree | b438c8fb8953b84614c170a5278ae72ece90bb68 /old/lindy/dot_bashrc | |
parent | eaf6d5b07bcdd9a3eb9bfdac93566b7432e46c37 (diff) | |
download | user-config-d47dd5aa3882aea1a8eff4fb9faa4881274559dc.tar.gz user-config-d47dd5aa3882aea1a8eff4fb9faa4881274559dc.zip |
Unify things and rename things
Diffstat (limited to 'old/lindy/dot_bashrc')
-rw-r--r-- | old/lindy/dot_bashrc | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/old/lindy/dot_bashrc b/old/lindy/dot_bashrc new file mode 100644 index 0000000..5ba4663 --- /dev/null +++ b/old/lindy/dot_bashrc @@ -0,0 +1,31 @@ +# +# ~/.bashrc +# + +# If not running interactively, don't do anything +[[ $- != *i* ]] && return + +#source $HOME/.profile + +alias ls='ls --color=auto' +PS1='[\u@\h \W]\$ ' + +export EDITOR='vim' + +alias irc='ssh -t adnab.me /usr/local/bin/irc' + +export PATH=$HOME/.local/bin:$PATH + +#keychain ~/.ssh/id_rsa --quiet +keychain ~/.ssh/id_ed25519 --quiet +eval $(keychain --eval --quiet) + +# RUST +source $HOME/.cargo/env + +# xkb +if [ ! -z "$DISPLAY" ]; then + xkbcomp ~/.xkb/symbols/custom-fr $DISPLAY 2>/dev/null +fi + +alias copyx='xclip -selection c' |