You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
442 B

  1. # ls aliases
  2. alias ll='ls -alF'
  3. alias la='ls -A'
  4. alias l='ls -CF'
  5. alias lst='ls -altr'
  6. # alias
  7. alias n='nvim'
  8. alias t='tmux'
  9. # git alias
  10. alias gdf='git difftool --tool=vimdiff'
  11. alias gs='git status'
  12. # gitg branch views, line from https://gitlab.com/dhole/dot_files/blob/master/.bash_aliases#L39
  13. alias gitg="git log --color --graph --abbrev-commit --pretty=format:'%Cred%h%Creset%C(yellow)%d%Creset %s %Cgreen(%ar)%C(cyan) %an<%ae>%Creset'"