diff --git a/Brewfile b/Brewfile index 815b10d..e84def5 100644 --- a/Brewfile +++ b/Brewfile @@ -9,6 +9,7 @@ brew "curl" brew "diff-so-fancy" brew "fd" brew "fzf" +brew "git" brew "htop" brew "httpie" brew "mysql", restart_service: true diff --git a/bash/.bashrc b/bash/.bashrc index 261892c..bb5bd6c 100644 --- a/bash/.bashrc +++ b/bash/.bashrc @@ -24,13 +24,20 @@ export HOMEBREW_GITHUB_API_TOKEN="2a4fad8fb1b5ff1de5fdf043aeea7d6cf0c5b101" alias ls='ls -G' alias ll='ls -l' alias vi='vim' -alias cat='bat --style changes' +alias cat='bat --style plain --theme=solarized' alias grep='rg' alias be='bundle exec' alias vim='nvim' alias ..='cd ..' alias ...='cd ../..' +alias gco='git checkout' +alias gd='git diff' +alias gdc='git diff --cached' +alias gc='git commit' +alias gs='git status -sb' +alias ga='git add' + # Homebrew stuff if [ -x /usr/local/bin/brew ]; then export PATH=/usr/local/bin:/usr/local/sbin:$PATH