diff options
| author | Jack Jamison <jackqjamison@gmail.com> | 2026-06-05 19:12:16 -0400 |
|---|---|---|
| committer | Jack Jamison <jackqjamison@gmail.com> | 2026-06-05 19:12:58 -0400 |
| commit | fe3984f541bd32bdfa418afb305b614176b55ca0 (patch) | |
| tree | 591c3e95a5fdc64078aad55c0d2a205a19ad985a /.bashrc | |
| parent | a2ae7b4ab3f577826b74ee0cce9667bfac306fb9 (diff) | |
Diffstat (limited to '.bashrc')
| -rw-r--r-- | .bashrc | 13 |
1 files changed, 6 insertions, 7 deletions
@@ -9,12 +9,12 @@ elif [ -f /etc/bash_completion ]; then fi # History -export HISTSIZE=2000 -export HISTFILESIZE=2000 # Equivalent to SAVEHIST -export HISTCONTROL=ignorespace # Equivalent to setopt hist_ignore_space +export HISTSIZE=10000 +export HISTFILESIZE=10000 +export HISTCONTROL=ignorespace # Misc options -shopt -s autocd # Equivalent to setopt autocd +shopt -s autocd # Disable Beep bind 'set bell-style none' @@ -25,7 +25,6 @@ alias mv="mv -iv" alias rm="rm -Iv" alias mkdir="mkdir -pv" - # Juice Aliases alias ls='ls -hN --color=auto --group-directories-first' alias grep='grep --color=auto' @@ -33,14 +32,14 @@ alias diff='diff --color=auto' alias ip='ip -color=auto' alias tree='tree --gitignore -I .git' -# Flow control +# disable xon/xoff (C-s and C-q) stty -ixon +# set PS1 RESET='\[\e[0m\]' BOLD='\[\e[1m\]' COLOR_USER='\[\e[38;5;153m\]' COLOR_DIR='\[\e[38;5;47m\]' COLOR_GIT='\[\e[38;5;105m\]' COLOR_END='\[\e[38;5;15m\]' - PS1="${BOLD}${COLOR_USER}\u ${COLOR_DIR}\w ${COLOR_GIT}\$(git-ps1)${COLOR_END}$ ${RESET}" |
