aboutsummaryrefslogtreecommitdiff
path: root/dot_bashrc
diff options
context:
space:
mode:
authorclyhtsuriva <aimeric@adjutor.xyz>2022-05-21 22:30:20 +0200
committerclyhtsuriva <aimeric@adjutor.xyz>2022-05-21 22:30:20 +0200
commitae1fa811bfa270a9124abb7aa8d4cc6af538071b (patch)
treeb8e0c7d97480ddc7371b0b4ab8de265534fe81e5 /dot_bashrc
parent3560996c2101fea49a5ebdb832fee1751816c060 (diff)
Modified bashrc according to xdg-ninja
and some minor changes
Diffstat (limited to 'dot_bashrc')
-rw-r--r--dot_bashrc23
1 files changed, 18 insertions, 5 deletions
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