diff options
author | Óscar Nájera <hi@oscarnajera.com> | 2022-04-01 18:49:06 +0200 |
---|---|---|
committer | Óscar Nájera <hi@oscarnajera.com> | 2022-04-01 18:49:06 +0200 |
commit | 9c94f06db9fdc9d40f98a0abd4a9646977f45ea1 (patch) | |
tree | d2dc3beb61ed87945b1e9e0e613090c6cfdb2592 /home-dots/dot-bashrc | |
parent | 466ef42009aaaea2b3f9e4c4a15b578c2ac5ed91 (diff) | |
download | dotfiles-9c94f06db9fdc9d40f98a0abd4a9646977f45ea1.tar.gz dotfiles-9c94f06db9fdc9d40f98a0abd4a9646977f45ea1.tar.bz2 dotfiles-9c94f06db9fdc9d40f98a0abd4a9646977f45ea1.zip |
Home dots
Diffstat (limited to 'home-dots/dot-bashrc')
-rw-r--r-- | home-dots/dot-bashrc | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/home-dots/dot-bashrc b/home-dots/dot-bashrc new file mode 100644 index 0000000..ad6595f --- /dev/null +++ b/home-dots/dot-bashrc @@ -0,0 +1,52 @@ +#-*- mode: shell-script; -*- +# +# ~/.bashrc +# + +# If not running interactively, don't do anything +[[ $- != *i* ]] && return +# GPG agent with ssh +unset SSH_AGENT_PID +if [ "${gnupg_SSH_AUTH_SOCK_by:-0}" -ne $$ ]; then + export SSH_AUTH_SOCK="$(gpgconf --list-dirs agent-ssh-socket)" +fi +# enable color support of ls and also add handy aliases +if [ -x /usr/bin/dircolors ]; then + test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)" + alias ls='ls --color=auto' + #alias dir='dir --color=auto' + #alias vdir='vdir --color=auto' + + alias grep='grep --color=auto' + alias fgrep='fgrep --color=auto' + alias egrep='egrep --color=auto' +fi + +# Git branch in prompt. +git_current_branch() { + local ref + ref=$(git symbolic-ref --quiet HEAD 2>/dev/null) + local ret=$? + if [[ $ret != 0 ]]; then + [[ $ret == 128 ]] && return # no git repo. + ref=$(git rev-parse --short HEAD 2>/dev/null) || return + fi + echo ${ref#refs/heads/} +} + +export PS1="\u@\h \W\[\033[32m\] \$(git_current_branch)\[\033[00m\] $ " + +export PATH="$HOME/.local/bin:$PATH" +alias isrun='ps -ae | grep' +alias gdimg='git difftool -t image_diff' +alias G='grep -i' +alias lar='ls -lahrt' +alias mykeys='setxkbmap -I$HOME/.config/xkb/ oscar -option caps:escape -print | xkbcomp -I$HOME/.config/xkb/ - $DISPLAY' + +# export PATH="$HOME/.cargo/bin:$PATH" +if [ -e $HOME/.nix-profile/etc/profile.d/nix.sh ]; then . $HOME/.nix-profile/etc/profile.d/nix.sh; fi # added by Nix installer +[ -f "$HOME/.ghcup/env" ] && source "$HOME/.ghcup/env" # ghcup-env +GUIX_PROFILE="$HOME/.guix-profile" && [ -e "$GUIX_PROFILE" ] && . "$GUIX_PROFILE/etc/profile" && export GUIX_LOCPATH=$GUIX_PROFILE/lib/locale +GUIX_PROFILE="$HOME/.config/guix/current" && [ -e "$GUIX_PROFILE" ] && . "$GUIX_PROFILE/etc/profile" +# export SSL_CERT_DIR="$HOME/.guix-profile/etc/ssl/certs" +# export SSL_CERT_FILE="$HOME/.guix-profile/etc/ssl/certs/ca-certificates.crt" |