summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Lemon <matt@matthewlemon.com>2021-03-22 20:26:47 +0000
committerMatthew Lemon <matt@matthewlemon.com>2021-03-22 20:26:47 +0000
commit247749eb13ece57655302a364e61c74b61259e79 (patch)
tree1d847b7c20597b0237ce6b84ddf56eaff76891fa
parentbc26e80c712f16d9177fc8d70b1d77964cf4c965 (diff)
changed PS1 variable and PATH
Diffstat (limited to '')
-rw-r--r--bashrc14
1 files changed, 8 insertions, 6 deletions
diff --git a/bashrc b/bashrc
index 9c2df6c..06acfff 100644
--- a/bashrc
+++ b/bashrc
@@ -56,11 +56,13 @@ if [ -n "$force_color_prompt" ]; then
fi
fi
-if [ "$color_prompt" = yes ]; then
- PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
-else
- PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
-fi
+PS1="\h:\w \u$ "
+
+#if [ "$color_prompt" = yes ]; then
+# PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
+#else
+# PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
+#fi
unset color_prompt force_color_prompt
# If this is an xterm set the title to user@host:dir
@@ -140,7 +142,7 @@ export FZF_DEFAULT_OPTS='--color info:108,prompt:109,spinner:108,pointer:168,mar
export TERM="xterm-256color"
#PATH
-export PATH=/home/lemon/bin:$PATH
+export PATH=/home/lemon/bin:/home/lemon/.local/bin:$PATH
[ -f ~/.fzf.bash ] && source ~/.fzf.bash