From bf1bb637fac55cded08dfc5c9cd9698564c15eef Mon Sep 17 00:00:00 2001 From: Roland Thomas Date: Tue, 26 Sep 2023 12:24:54 -0400 Subject: [PATCH] Update .bashrc, abbreviations.fish --- .bashrc | 13 ++++--------- .config/fish/abbreviations.fish | 9 +++++---- 2 files changed, 9 insertions(+), 13 deletions(-) diff --git a/.bashrc b/.bashrc index c65f25e..0f18d0c 100644 --- a/.bashrc +++ b/.bashrc @@ -8,25 +8,20 @@ export MANPAGER="sh -c 'col -bx | bat -l man -p'" [[ $- != *i* ]] && return # ls aliases -alias ls='exa --color=auto' -alias sl='exa --color=auto' -alias ll='exa -la --color=auto' +alias ls='eza --color=auto' +alias sl='eza --color=auto' +alias ll='eza -la --color=auto' # git aliases alias gss='git status' alias gcm='git commit -m' -alias config='git --git-dir=$HOME/config-files/ --work-tree=$HOME' +alias cf='git --git-dir=$HOME/config-files/ --work-tree=$HOME' # aliases alias ..='cd ..' alias vi='vim' alias ip='ip -color=auto' -# vi key bindings -set -o vi - -PS1='[\u@\h \W]\$ ' - # starship prompt eval "$(starship init bash)" diff --git a/.config/fish/abbreviations.fish b/.config/fish/abbreviations.fish index 1ecdb0b..6ef78eb 100644 --- a/.config/fish/abbreviations.fish +++ b/.config/fish/abbreviations.fish @@ -1,10 +1,11 @@ -abbr ls 'exa --color=auto' -abbr sl 'exa --color=auto' -abbr ll 'exa -la --color=auto' -abbr ip 'ip --color=auto' +abbr ls 'eza --color=auto' +abbr sl 'eza --color=auto' +abbr ll 'eza -la --color=auto' abbr gss 'git status' abbr gcm 'git commit -m' abbr .. 'cd ..' abbr vi 'vim' +abbr ip 'ip --color=auto' +