initial commit

This commit is contained in:
scbj
2024-09-05 11:36:49 +02:00
parent 7ff2311473
commit 94a3abf0ed
9 changed files with 562 additions and 0 deletions

24
.bashrc Normal file
View File

@@ -0,0 +1,24 @@
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
alias ls='ls -hal --color=auto'
alias list='eza -la --group-directories-first -s=ext --color=always'
alias grep='grep --color=auto'
alias rg='rg --no-ignore -i -n -A 1 -B 1 --color=auto -e'
PS1='[\u@\h \W]\$ '
# setup eza (continuation of exa)
export EZA_CONFIG_DIR="~/.config/eza/"
# setup starship
eval "$(starship init bash)"
# setup qmk completion
source /home/scbj/repos/qmk_firmware/util/qmk_tab_complete.sh