Compare commits

...

3 Commits

3 changed files with 3 additions and 1 deletions

View File

@ -1,2 +1,3 @@
## git
alias git-yolo='git commit -am "`curl -s http://whatthecommit.com/index.txt`"'
alias diff='git diff --no-index'

View File

@ -4,6 +4,7 @@ export ARDUINO_DIR="/usr/share/arduino"
export ARDMK_DIR="$HOME/Programs/Arduino-Makefile"
export STEAMAPPS="$HOME/.local/share/Steam/steamapps/common"
export QT_STYLE_OVERRIDE=gtk2
export QT_AUTO_SCREEN_SCALE_FACTOR=true
export ALTERNATE_EDITOR=""
export TERMINAL=roxterm
export CALIBRE_USE_SYSTEM_THEME=true

2
.zshrc
View File

@ -22,7 +22,7 @@ antigen apply
# Command Specific Aliases
for i in $HOME/.aliases/command-specific/*
do
if hash $(basename $i) 2>/dev/null
if hash $(basename $i) 2>/dev/null # check if command exists
then
source $i
fi