diff options
author | Adam M. Stück <adam@adast.xyz> | 2023-02-04 00:18:19 +0100 |
---|---|---|
committer | Adam M. Stück <adam@adast.xyz> | 2023-02-04 00:18:19 +0100 |
commit | a8e76578447ef8e4576cef86804c3f38e0c47573 (patch) | |
tree | 18f92e7f3aee4cc1444d3e6809106c46b0b45dd8 | |
parent | 3a1b3ccf9259a78afe3524daa08d7cbd25ed68cc (diff) |
shell: disable starship prompt, minor cleanup
-rw-r--r-- | .bashrc | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -1,10 +1,6 @@ # If not running interactively, don't do anything [[ $- != *i* ]] && return -HISTCONTROL=ignoreboth:erasedups -HISTSIZE=100000 -HISTFILESIZE=$HISTSIZE - shopt -s histappend shopt -s checkwinsize @@ -16,12 +12,17 @@ export EDITOR=nvim export VISUAL=nvim export PAGER="less -i -j.5 -R" +export HISTCONTROL=ignoreboth:erasedups +export HISTSIZE=100000 +export HISTFILESIZE=$HISTSIZE +export PS1="\[\e[1;33m\]\W\[\e[m\] $ " + source /usr/share/fzf/key-bindings.bash source /usr/share/fzf/completion.bash source $XDG_DATA_HOME/cargo/env source $XDG_CONFIG_HOME/aliases eval "$(zoxide init bash)" -eval "$(starship init bash)" +# eval "$(starship init bash)" # pfetch |