From ae1fa811bfa270a9124abb7aa8d4cc6af538071b Mon Sep 17 00:00:00 2001 From: clyhtsuriva Date: Sat, 21 May 2022 22:30:20 +0200 Subject: Modified bashrc according to xdg-ninja and some minor changes --- dot_bashrc | 23 ++++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) (limited to 'dot_bashrc') diff --git a/dot_bashrc b/dot_bashrc index 4ccabd8..e5cc0d5 100644 --- a/dot_bashrc +++ b/dot_bashrc @@ -1,11 +1,11 @@ stty -ixon # Disable ctrl-s and ctrl-q. shopt -s autocd cdspell checkjobs extglob histappend -#autocd : Allows you to cd into directory merely by typing the directory name. -#cdspell : minor errors in the spelling of a directory component in a cd command are corrected -#checkjobs : bash lists the status of any stopped and running jobs before exiting an interactive shell -#extglob : extended globing, advanced pattern matching -#histappend: append to the history instead of overwriting (good for multiple connections) +# autocd : Allows you to cd into directory merely by typing the directory name. +# cdspell : minor errors in the spelling of a directory component in a cd command are corrected +# checkjobs : bash lists the status of any stopped and running jobs before exiting an interactive shell +# extglob : extended globing, advanced pattern matching +# histappend: append to the history instead of overwriting (good for multiple connections) HISTSIZE= HISTFILESIZE= # Infinite history. HISTCONTROL="ignorespace" @@ -13,6 +13,19 @@ HISTCONTROL="ignorespace" # ignore duplicate commands, ignore commands starting with a space export HISTCONTROL=erasedups +export XDG_DATA_HOME="$HOME"/.local/share +export XDG_CONFIG_HOME="$HOME"/.config +export XDG_STATE_HOME="$HOME"/.local/state +export XDG_CACHE_HOME="$HOME"/.cache +export ANSIBLE_HOME="$XDG_DATA_HOME"/ansible +export GNUPGHOME="$XDG_DATA_HOME"/gnupg +export GRADLE_USER_HOME="$XDG_DATA_HOME"/gradle +export _JAVA_OPTIONS=-Djava.util.prefs.userRoot="$XDG_CONFIG_HOME"/java +export ANDROID_HOME="$XDG_DATA_HOME"/android +export HISTFILE="$XDG_STATE_HOME"/bash/history +export LESSHISTFILE="$XDG_CACHE_HOME"/less/history +export NPM_CONFIG_USERCONFIG="$XDG_CONFIG_HOME"/npm/npmrc +export PYTHONSTARTUP="$XDG_CONFIG_HOME"/python/pythonrc PS1="\[$(tput bold)\]\[$(tput setaf 1)\][\[$(tput setaf 3)\]\u\[$(tput setaf 2)\]@\[$(tput setaf 4)\]\h \[$(tput setaf 5)\]\w\[$(tput setaf 1)\]]\[$(tput setaf 7)\]\\$ \[$(tput sgr0)\]" ; export PS1 -- cgit v1.2.3