diff options
Diffstat (limited to '')
-rw-r--r-- | bashrc | 14 |
1 files changed, 8 insertions, 6 deletions
@@ -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 |