X-Git-Url: https://git.martlubbers.net/?a=blobdiff_plain;f=shell%2F.bashrc;h=b3744dbe794096a4b15927e48f2bac3f5bab55cf;hb=9bcd484becb3085027277b9a8e4f100bb33cb737;hp=03aef5054f4db834d933deaec482921803be7571;hpb=4ae597f2adadef003e4e2597849b5456509443d3;p=dotfiles.git diff --git a/shell/.bashrc b/shell/.bashrc index 03aef50..b3744db 100644 --- a/shell/.bashrc +++ b/shell/.bashrc @@ -1,36 +1,50 @@ -shopt -s checkwinsize +shopt -s checkwinsize histappend globstar export HISTCONTROL=erasedups export HISTFILESIZE=NOTHING export HISTSIZE=NOTHING -shopt -s histappend export PROMPT_COMMAND='history -a' -export TERMINAL=urxvtc +export TERMINAL=~/projects/st/st export EDITOR="vim -p" export TERM=screen export BROWSER=firefox export PAGER=less export SUDO_ASKPASS=/usr/lib/ssh/ssh-askpass -export NOTMUCH_CONFIG=~/.config/notmuch/config -export CLEAN_HOME=/opt/clean +# XDG fixes +alias svn="svn --config-dir \"${XDG_CONFIG_HOME:-$HOME/.config}\"/subversion" +alias tmux="tmux -f \"${XDG_CONFIG_HOME:-$HOME/.config}/tmux/config\"" +export NOTMUCH_CONFIG="${XDG_CONFIG_HOME:-$HOME/.config}"/notmuch/config +export PASSWORD_STORE_DIR="${XDG_DATA_HOME:-$HOME/.local/share}"/pass +export TMUX_TMPDIR="$XDG_RUNTIME_DIR" + +export CLEAN_HOME=/opt/clean-x64 + export PATH=~/.local/bin:$PATH export PATH=$PATH:$CLEAN_HOME/lib/exe:$CLEAN_HOME/bin -export PATH=$PATH:~/projects/esp-open-sdk/xtensa-lx106-elf/bin -export PATH=$PATH:/opt/texlive/2017/bin/x86_64-linux:/opt/zotero +export PATH=$PATH:/opt/texlive/2020/bin/x86_64-linux:/opt/zotero:/opt/arduino:/opt/beets/bin:/opt/firefox + +export MANPATH=~/.local/share/man:/opt/texlive/2020/texmf-dist/doc/man:./arduino/java/man:$MANPATH export GTK_IM_MODULE=xim export QT_IM_MODULE=xim +export QT_QPA_PLATFORMTHEME=qt5ct + +export NNTPSERVER=news.tweak.nl +alias slrn="slrn -i \"${XDG_CONFIG_HOME:-$HOME/.config}/slrn/slrnrc\"" alias ls='ls --color=auto' alias grep='grep --color=auto' alias vi=vim +alias shutdown="echo \"Are you sure? I\'m Ygdrassil\" && read && shutdown" + +. /etc/bash_completion set_prompt(){ last_c=$? - PS1='\u@\h' + PS1='\H' [[ $last_c -ge 1 ]] && PS1="($last_c) $PS1" PS1="$PS1\w\$ " }