This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Place in your .zshrc file. | |
| # If a command takes >10 CPU seconds, automatically print the time it took. | |
| REPORTTIME=10 | |
| # Format the output of the time command to be a little more human friendly. | |
| TIMEFMT=" Elapsed: %*E User: %U Kernel: %*S" | |
| alias gcne='git commit --amend --no-edit' | |
| alias gw='git worktree' | |
| alias glog="git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| set -g default-terminal "screen-256color" | |
| set -g prefix C-a | |
| unbind C-b | |
| bind-key C-a send-prefix | |
| unbind % | |
| bind \\ split-window -h |