cleanup obsolete settings
Some checks failed
tests / Lint (push) Failing after 23s

This commit is contained in:
Ibrahim Mkusa 2024-12-04 08:24:44 -05:00
parent dd9a54dc8b
commit 121e3763a6
3 changed files with 7 additions and 4 deletions

View File

@ -17,7 +17,7 @@ shopt -s histappend
shopt -s cdspell shopt -s cdspell
# solarized directory color listings # solarized directory color listings
eval `dircolors $HOME/.dir_colors` # eval `dircolors $HOME/.dir_colors`
# tmuxifier # tmuxifier
eval "$(starship init bash)" # eval "$(starship init bash)"

View File

@ -44,8 +44,7 @@ fi
# work around for fzf # work around for fzf
set -o vi set -o vi
[ -f ~/.fzf.bash ] && source ~/.fzf.bash eval "$(fzf --bash)"
# tmuxifier # tmuxifier
eval "$(tmuxifier init -)" eval "$(tmuxifier init -)"

View File

@ -14,3 +14,7 @@ pdfmerge() {
gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -dPDFSETTTINGS=/prepress\ gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite -dPDFSETTTINGS=/prepress\
-sOutputFile=$@ ; -sOutputFile=$@ ;
} }
apdoc () {
ansible-doc $1 | grep EXAMPLES -A 100 | less
}