/.dotfiles

A collection of tweaks to make my life easier.

Primary LanguageShell

.dotfiles

A collection of tweaks to make my life easier.

Traversing Files

> .. is to cd ../ Move up 1 file

> ... is to cd ../../ Move up 2 files

> .... is to cd ../../../ Move up 3 files

> ..... is to cd ../../../../ Move up 4 files

Open Applications

> atom is to atom .

Install Applications

> install-apps downloads the following apps:

  • Google Chrome
  • Discord
  • Slack
  • Minecraft
  • InsomniaX
  • Sketch
  • Zoom
  • Adobe Creative Cloud
  • Ghost
  • League of Legends
  • Spark
  • Dropbox

Git Commands

> clone is to git clone

> pull is to git pull

🙉 > rebase is to git rebase

🙉 > commit is to git commit

🙉 > checkout is to git checkout

🙉 > status is to git status

🙉 > pmas is to git push origin master

🙉 > pher is to git push heroku master

🙉 > log is to git log --date-order --all --graph --format='%C(green)%h%Creset %C(yellow)%an%Creset %C(blue bold)%ar%Creset %C(red bold)%d%Creset%s'

the output of git commands are a little more colorful.. thats also neat

The color scheme of the terminal is Dracula

Color Scheme:

Base color

white=$(tput setaf 15);

Primary colors

purple=$(tput setaf 141);

pink=$(tput setaf 212);

yellow=$(tput setaf 228);

Secondary colors

cyan=$(tput setaf 51);

green=$(tput setaf 84);

orange=$(tput setaf 214);

red=$(tput setaf 203);