2018-02-27 01:28:58 +01:00
|
|
|
# New Start: A modern Arch workflow built with an emphasis on functionality.
|
|
|
|
# Copyright (C) 2017-2018 Donovan Glover
|
2017-10-31 13:14:26 +01:00
|
|
|
|
2018-09-20 01:11:22 +02:00
|
|
|
alias c="clear" # Because 5 letters is too much
|
|
|
|
alias dog="pygmentize -g" # "dog" is a colorful version of cat
|
|
|
|
alias emacs="vim" # No need to start another operating system
|
2017-10-31 13:14:26 +01:00
|
|
|
|
2018-09-20 01:11:22 +02:00
|
|
|
# Use exa as a drop-in replacement for ls and tree (faster, more colors, etc.)
|
|
|
|
alias ls="exa --group-directories-first"
|
|
|
|
alias tree="exa --group-directories-first --long --tree -I 'node_modules|lib|.git'"
|