mohitjain / dotfiles

Shell scripts for applying default settings to UNIX-based operating systems.

Home Page:http://www.alchemists.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Dotfiles

Patreon

Shell scripts for applying default settings to UNIX-based operating systems.

By default, these are set to my preferences (namely for OSX) but you can change them to your liking by editing any of the *.tt template files in the home_files directory. Read on to learn more.

Table of Contents

Features

  • Configures the Bash .bashrc, .bash_profile, and .inputrc files.
  • Configures the .hushlogin file.
  • Configures the CTags .ctags file.
  • Configures the Vim .vimrc file.
  • Configures the Git .gitconfig, .gitignore, and hook (i.e. .git_template) files.
  • Configures the Silver Surfer .agignore file.
  • Configures the Ruby Gems .gemrc file.
  • Configures the Ruby .irbrc file.
  • Configures the Pry .pryrc file.
  • Configures the Ruby Debugger .rdebugrc file.
  • Configures the RSpec .rspec file.
  • Configures the Awesome Print .aprc file.
  • Configures the Pow .powconfig file.
  • Configures the PostgreSQL .psqlrc file.
  • Configures the Xray .xrayconfig file.
  • Configures Sublime Text as the default editor.
  • Adds Bash Completion.
  • Adds Go Bash support.
  • Adds rbenv Bash support.
  • Adds rbenv-vars settings.
  • Adds NPM Bash support.
  • Adds Travis CI Bash support.
  • Adds Z Bash support.

Requirements

Setup

Open a terminal window and execute the following commands:

Current Version (stable)

git clone git://github.com/bkuhlmann/dotfiles.git
cd dotfiles
git checkout v19.0.0

Master Version (unstable)

git clone git://github.com/bkuhlmann/dotfiles.git
cd dotfiles

Edit any of the home_files/*.tt template files as you see fit. Then open a terminal window and execute the following command to install:

cd dotfiles
./run.sh

Executing the run.sh script will present the following options:

s: Show managed dotfiles.
i: Install dotfiles (existing files are skipped).
l: Link dotfiles to this project (interactive per file, excludes: env.sh, .gemrc, and .gitconfig).
c: Check for differences between $HOME files and this project's files.
d: Delete dotfiles (interactive per file, excludes: env.sh, .gemrc, and .gitconfig).
q: Quit/Exit.

The options prompt can be skipped by passing the desired option directly to the run.sh script. For example, executing ./run.sh s will show all managed dotfiles by this project.

After install, the following files will require manual updating:

  • .bash/env.sh - Add secret/machine-specific environment settings (if any).
  • .gemrc - Uncomment the "gemcutter_key" line and add your own RubyGems key for publishing gems.
  • .gitconfig - Uncomment the name, email, and token lines within the [user] and [github] sections to replace with your own details.

Upgrade

When upgrading to a new version, do the following to apply upgrades:

  1. Run: ./run.sh l. This will link any new files. If not using linked files, run ./run.sh d and ./run.sh i instead.
  2. Run: ./run.sh c. This will display file differences (if any -- usually, should only be excluded files).
  3. Run: bashs. This will apply updates to the shell.
  4. Change to the root directory where all projects are stored and run gia to re-initialize repositories with new Git Hook updates.

Usage

Aliases

General
.. = "cd .."
... = "cd ../.."
cdb = "cd -"
c = "clear"
h = "history"
l = "ls -alh"
l1 = "ls -A1 | _copy_and_print 'n'"
p = 'pwd | tr -d "rn" | _copy_and_print'
o = "open"
cat = 'ccat -G Keyword = "turquoise" -G Punctuation="green" -G Decimal="green" -G Type="blue" -G Literal="blue" -G String="lightgray" -G Plaintext="white"'
home = "cd $HOME"
pss = 'ps axu | grep --invert-match grep | grep "$@" --ignore-case --color=auto'
man = "gem man --system"
bashe = "$EDITOR $HOME/.bash/env.sh"
bashs = "exec $SHELL"
bashv = "bash --version"
Network
sshe = "$EDITOR $HOME/.ssh/config"
key = "open /Applications/Utilities/Keychain Access.app"
ipa = 'curl --silent checkip.dyndns.org | grep --extended-regexp --only-matching "[0-9.]+" | _copy_and_print'
sniff = "sudo ngrep -W byline -d 'en0' -t '^(GET|POST) ' 'tcp and port 80'"
dnsi = "scutil --dns"
dnss = "sudo dscacheutil -statistics"
dnsf = "sudo dscacheutil -flushcache && sudo killall -HUP mDNSResponder && printf 'DNS cache cleared.n'"
tsl = "tmux list-sessions"
tsa = "tmux attach-session -t"
tsk = "tmux kill-session -t"
tsr = "tmux rename-session -t"
hb = "brew"
hbi = "brew install"
hbin = "brew info"
hbu = "brew uninstall"
hbl = "brew list"
hbs = "brew search"
hbsw = "brew switch"
hbup = "brew update --all"
hbug = "brew upgrade --all"
hbp = "brew pin"
hbpu = "brew unpin"
hbd = "brew doctor"
hbc = "brew cleanup"
hbrb = "brew uninstall ruby-build && brew install ruby-build"
gi = "git init"
gcle = "git config --local --edit"
gcge = "git config --global --edit"
gget = "git config"
gst = "git status --short --branch"
gl = 'git log --graph --pretty=format:"$(_git_log_line_format)"'
gld = 'git log --stat --pretty=format:"$(_git_log_details_format)"'
glh = 'git log --pretty=format:%H -1 | _copy_and_print'
glf = 'git fetch && git log --reverse --no-merges --pretty=format:"$(_git_log_line_format)" ..@{upstream}'
glg = 'git log --pretty=format:"$(_git_log_line_format)" --grep'
gls = 'git log --pretty=format:"$(_git_log_line_format)" -S'
glt = 'git for-each-ref --sort=taggerdate --format = "%(color:yellow)%(refname:short)%(color:reset)|%(taggerdate:short)|%(color:blue)%(color:bold)%(*authorname)%(color:reset)|%(subject)" refs/tags | column -s"|" -t'
grl = "git reflog"
gg = "git grep"
guthors = "git log --format = '%an' | sort | uniq -c | sort --reverse"
gd = "git diff"
gdc = "git diff --cached"
gdm = "git diff origin/master"
gdw = "git diff --color-words"
gdt = "git difftool"
gdtc = "git difftool --cached"
gdtm = "git difftool origin/master"
glame = "git blame"
gbi = "git bisect"
gbis = "git bisect start"
gbib = "git bisect bad"
gbig = "git bisect good"
gbir = "git bisect reset"
gbisk = "git bisect skip"
gbil = "git bisect log"
gbire = "git bisect replay"
gbiv = 'git bisect visualize --reverse --pretty=format:"$(_git_log_line_format)"'
gbih = "git bisect help"
gb = "git branch --verbose"
gbt = "git show-branch --topics"
gba = "git branch --all"
gbn = "_git_branch_name | _copy_and_print"
gbr = "git branch --move"
gm = "git merge"
gms = "git merge --squash"
gma = "git merge --abort"
gcl = "git clone"
gch = "git checkout"
gchm = "git checkout master"
ga = "git add"
gau = "git add --update"
gap = "git add --patch"
gall = "git add --all ."
gco = "git commit"
gatch = "git commit --patch"
gca = "git commit --all"
gcm = "git commit --message"
gcam = "git commit --all --message"
gcf = "git commit --fixup"
gcs = "git commit --squash"
gamend = "git commit --amend"
gamendh = "git commit --all --amend --no-edit"
gcp = "git cherry-pick"
gcpa = "git cherry-pick --abort"
gashc = "git stash clear"
gnl = "git notes list"
gns = "git notes show"
gna = "git notes add"
gne = "git notes edit"
gnd = "git notes remove"
gnp = "git notes prune"
gf = "git fetch"
gfp = "git fetch --prune"
gpu = "git pull"
gpuo = "git pull origin"
gpuom = "git pull origin master"
grbc = "git rebase --continue"
grbs = "git rebase --skip"
grba = "git rebase --abort"
ger = "git rerere"
gp = "git push"
gpf = "git push --force-with-lease"
gpn = "git push --no-verify"
gpo = "git push --set-upstream origin"
gpr = "git push review master"
gps = "git push stage stage:master"
gpp = "git push production production:master"
gtag = "git tag"
gtagv = "git tag --verify"
gtags = "git push --tags"
gwp = "git worktree prune"
gr = "git reset" # Unstage staged files for commit.
grs = "git reset --soft HEAD^" # Undo previous commit.
grh = "git reset --hard HEAD" # Reset to HEAD, destroying all staged/unstaged changes. UNRECOVERABLE!
gdis = "git reset --hard" # Reset to commit, destroying all previous commits. UNRECOVERABLE!
grm = "git reset --merge ORIG_HEAD" # Reset to original HEAD prior to merge.
grom = "git fetch --all && git reset --hard origin/master" # Reset local branch to origin/master branch. UNRECOVERABLE!
gel = "git rm"
gelc = "git rm --cached" # Removes previously tracked file from index after being added to gitignore.
grev = "git revert" # Revert a commit.
grp = "git remote prune origin"
bzc = "tar --use-compress-program=pigz --create --preserve-permissions --bzip2 --verbose --file"
bzx = "tar --extract --bzip2 --verbose --file"
pgi = "initdb /usr/local/var/postgres"
pgst = "pg_ctl -D /usr/local/var/postgres -l /usr/local/var/postgres/server.log start &"
pgsp = "pg_ctl -D /usr/local/var/postgres stop -s -m fast"
reds = "redis-server /usr/local/etc/redis.conf &"
redc = "redis-cli"
rb = "rbenv"
rbg = "rbenv global"
rbl = "rbenv local"
rbs = "rbenv shell"
rbh = "rbenv rehash"
rbp = "rbenv which"
rbw = "rbenv whence"
rbv = "rbenv versions"
rbi = "rbenv install"
rbil = "rbenv install --list"
rbu = "rbenv uninstall"
rbvars = "rbenv vars"
rd = "rdoc -a -o tmp/doc/rdoc"
rdo = "open tmp/doc/rdoc/index.html"
rdd = "rm -rf tmp/doc/rdoc"
geml = "gem list"
gemi = "gem install"
gemup = "gem update"
gemu = "gem uninstall"
gemc = "gem cleanup"
gems = "gem server"
gemp = "gem pristine"
geme = "gem environment"
gemuc = "gem update --system && gem update && gem cleanup"
gemw = "gem whois"
b = "bundle"
bl = "bundle lock"
bi = "bundle install"
bu = "bundle update"
bo = "bundle outdated"
bce = "$EDITOR $HOME/.bundle/config"
bcon = "bundle console"
be = "bundle exec"
bch = "rm -f Gemfile.lock; bundle check"
tocg = "tocer --generate"
toce = "tocer --edit"
tocv = "tocer --version"
ms = "milestoner"
msc = 'milestoner --commits | _copy_and_print "n"'
mst = "milestoner --tag"
msp = "milestoner --publish"
mse = "milestoner --edit"
msv = "milestoner --version"
gs = "gemsmith"
gse = "gemsmith --edit"
gsr = "gemsmith --read"
gso = "gemsmith --open"
bess = "bes spec"
besn = "bess --next-failure"
besf = "bess --only-failures"
besb = "bess --seed 2112 --bisect"
bbr = "bundle exec byebug --remote localhost:1048"
scs = "sc --sandbox"
sgc = "sg controller"
sgm = "sg model"
sgh = "sg helper"
sgs = "sg scaffold"
dbd = "ber db:drop"
dbc = "ber db:create"
dbm = "ber db:migrate"
dbmt = "ber db:migrate && ber db:rollback && ber db:migrate"
assp = "ber assets:precompile"
assc = "ber assets:clean"
notest = "ber notes:custom ANNOTATION=TODO"
notesf = "ber notes:custom ANNOTATION=FIX"
taild = "tail -f log/development.log"
tailt = "tail -f log/test.log"
res = "touch tmp/restart.txt"
em = "ember"
emg = "ember generate"
ems = "ember server"
berj = "ber jasmine"
berjci = "ber jasmine:ci"
cop = "rubocop --display-cop-names"
copc = "rubocop --auto-gen-config"
copo = "rubocop --display-cop-names --only"
copf = "rubocop --auto-correct"
cops = "rubocop --show-cops"
rbest = "rails_best_practices"
fms = "foreman start"
caps = "bec stage deploy"
capp = "bec production deploy"
swift = "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift"
agf = "ag --hidden --files-with-matches --file-search-regex"
ez = "$EDITOR $HOME/.z"
pfo = 'open -a "Path Finder.app" "$PWD"'
v = "vim"
e = "sublime"
mo = "open -a Marked 2"
cin = "asciinema"
cinp = "asciinema play"
cinu = "asciinema upload"
cinv = "asciinema --version"

Functions

General
t2s = Tab to Space - Convert file from tab to space indendation.
cype = Colorized Type - Identical to "type" command functionality but with syntax highlighting.
kilp = Kill Process - Kill errant processes.
lessi = Less Interactive - Inspect file, interactively.
sslc = SSL Certificate Creation - Create SSL certificate.
curli = Curl Inspect - Inspect remote file with default editor.
port = Port - List file activity on given port.
gia = Git Init (all) - Initialize/re-initialize repositories in current directory.
groot = Git Root - Change to repository root directory regardless of current depth.
ginfo = Git Info - Print repository overview information.
ghurn = Git Churn - Answer commit churn for project files (sorted highest to lowest).
gount = Git Commit Count - Answer total number of commits for current project.
gli = Git Log (interactive) - List commits with support to show/diff individual commits.
ghow = Git Show - Show commit details with optional diff support.
gile = Git File - Show file details for a specific commit (with optional diff support).
gistory = Git File History - View file commit history (with optional diff support).
glameh = Git Blame History - View file commit history for a specific file and/or lines (with optional diff support).
guthorsa = Git Authors (all) - Answer author commit activity per project (ranked highest to lowest).
gsta = Git Status (all) - Answer status of projects with uncommited/unpushed changes.
gup = Git Update - Fetch commits, prune untracked references, review each commit (optional, with diff), and pull (optional).
gseta = Git Set Config Value (all) - Set key value for projects in current directory.
ggeta = Git Get Config Value (all) - Answer key value for projects in current directory.
gunseta = Git Unset (all) - Unset key value for projects in current directory.
gailsa = Git Email Set (all) - Sets user email for projects in current directory.
gail = Git Email Get - Answer user email for current project.
gaila = Git Email Get (all) - Answer user email for projects in current directory.
gince = Git Since - Answer summarized list of activity since date/time for projects in current directory.
gday = Git Day - Answer summarized list of current day activity for projects in current directory.
gweek = Git Week - Answer summarized list of current week activity for projects in current directory.
gmonth = Git Month - Answer summarized list of current month activity for projects in current directory.
gsup = Git Standup - Answer summarized list of activity since yesterday for projects in current directory.
gtail = Git Tail - Answer commit history since last tag for current project (copies results to clipboard).
gtaila = Git Tail (all) - Answer commit history count since last tag for projects in current directory.
gash = Git Stash - Creates stash.
gashl = Git Stash List - List stashes.
gashs = Git Stash Show - Show stash or prompt for stash to show.
gashp = Git Stash Pop - Pop stash or prompt for stash to pop.
gashd = Git Stash Drop - Drop stash or prompt for stash to drop.
gasha = Git Stash (all) - Answer stash count for projects in current directory.
gucca = Git Upstream Commit Count (all) - Answer upstream commit count since last pull for projects in current directory.
gpua = Git Pull (all) - Pull new changes from remote branch for projects in current directory.
gpa = Git Push (all) - Push changes for projects in current directory.
galla = Git Add (all) - Apply file changes (including new files) for projects in current directory.
gcama = Git Commit and Message (all) - Commit changes (modified and new), with message, for projects in current directory.
gcap = Git Commit and Push (all) - Commit and push changes for projects in current directory.
gri = Git Rebase (interactive) - Rebase commits, interactively.
gbl = Git Branch List - List local and remote branch details.
gbc = Git Branch Create - Create and switch to branch.
gbs = Git Branch Switch - Switch between branches.
gbd = Git Branch Delete - Select local and/or remote branches to delete.
gbdm = Git Branch Delete Merged - Delete locally merged branches.
gbna = Git Branch Name (all) - List current branch for projects in current directory.
gtagd = Git Tag Delete - Delete local and remote tag (if found).
gwa = Git Worktree Add - Create and switch to new worktree.
ghd = Git Hook Delete - Delete hooks for current project.
ghda = Git Hook Delete (all) - Delete hooks for projects in current directory.
gvac = Git Verify and Clean - Verify and clean objects for current project.
gvaca = Git Verify and Clean (all) - Verify and clean objects for projects in current directory.
guke = Git Nuke - Permanently destroy and erase a file from history. UNRECOVERABLE!
gh = GitHub - View GitHub details for current project.
pguc = PostgreSQL User Create - Create PostgreSQL user.
pgud = PostgreSQL User Drop - Drop PostgreSQL user.
pgt = PostgreSQL Template - Edit PostgreSQL template.
rua = Ruby Upgrade (all) - Upgrade Ruby projects in current directory with new Ruby version.
rserv = Ruby Server - Serve web content from current directory via WEBrick.
bes = Bundle Execute RSpec - Run RSpec via binstub or Bundler.
bera = Bundle Execute Rake (all) - Run default Rake tasks via binstub or Bundler for projects in current directory.
bessa = Bundle Execute RSpec (all) - Run RSpec via binstub or Bundler for projects in current directory.
bj = Bundler Jobs - Answer maximum Bundler job limit for current machine or automatically set it.
bcim = Bundler Ignore Post-Install Message - Update Bundler to ignore install messages for specified gem.
boa = Bundle Outdated (all) - Answer outdated gems for projects in current directory.
bua = Bundle Update (all) - Update gems for projects in current directory.
bca = Bundle Clean (all) - Clean projects of gem artifacts (i.e. pkg folder).
ber = Bundle Execute Rake - Run Rake via binstub or Bundler.
beg = Bundle Execute Guard - Run Guard via binstub or Bundler.
bec = Bundle Execute Capistrano - Run Capistrano via binstub or Bundler.
rew = Rails New - Create new Rails application from selected template.
sc = Rails Script Console - Run Rails console.
ss = Rails Script Server - Run Rails server.
sg = Rails Script Generator - Run Rails generator.
sdb = Rails Script Database Console - Run Rails database console.
erd = Rails ERD - Generate Rails Entity Relationship Diagram (ERD).
rr = RailRoady Models - Generate diagrams for Rails models, controllers, or states.
tcie = Travis CI Encrypt (all) - Encrypt string for Travis CI-enabled projects in current directory.
sv = Site Validator - Generate site validation report using W3C Validator.
sketch = Sketch - Convert photo into a sketch. Inspired by [Whiteboard Cleaner Gist](https://gist.github.com/lelandbatey/8677901).
gifize = Gifize - Convert video to animated GIF.
cinr = asciinema Record - Create new asciinema recording.
Dotfiles
dots = Dotfiles - Learn about dotfile aliases, functions, etc.

Git Hooks

bundler_gemfile_path = Bundler Gemfile Path - Detect gem path statements.
capybara_save_and_open_page = Capybara Save And Open Page - Detect save_and_open_page statements.
ctags_rebuild = CTags Rebuild - Rebuild project .tags file.
git_commit_message_prefix = Git Commit Message Prefix - Detect commit message invalid prefixes.
git_commit_message_words = Git Commit Message Words - Detect commit message words to avoid.
git_commit_message_length = Git Commit Message Length - Detect commit message long line lengths.
jasmine_focus = Jasmine Focus - Detect Jasmine focus statements.
java_script_debugger = JavaScript Debugger - Detect JavaScript debug statements.
java_script_console = JavaScript Console - Detect JavaScript console statements.
java_script_alert = JavaScript Alert - Detect JavaScript alert statements.
pry_binding = Pry Binding - Detect Pry debug statements.
rspec_focus = RSpec Focus - Detect RSpec focus metadata.

IRB, Pry, and Rails consoles

ConsoleKit.copy - Copies data to the MacOS clipboard.
ConsoleKit.paste - Pastes data from the MacOS clipboard.
ConsoleKit.http_codes - Prints Rails HTTP codes.
ConsoleKit.http_symbols - Prints Rails HTTP symbols.

Pry Aliases

'w' = "whereami"
'c' = "continue"
's' = "step"
'n' = "next"
'f' = "finish"
"bp" = "break"
"bpe" = "break --enable"
"bpd" = "break --disable"
"bpD" = "break --delete"
"bpc" = "break --disable-all"
"bpC" = "break --delete-all"
"bph" = "break --help"

Versioning

Read Semantic Versioning for details. Briefly, it means:

  • Patch (x.y.Z) - Incremented for small, backwards compatible bug fixes.
  • Minor (x.Y.z) - Incremented for new, backwards compatible public API enhancements and/or bug fixes.
  • Major (X.y.z) - Incremented for any backwards incompatible public API changes.

Code of Conduct

Please note that this project is released with a CODE OF CONDUCT. By participating in this project you agree to abide by its terms.

Contributions

Read CONTRIBUTING for details.

License

Copyright (c) 2010 Alchemists. Read the LICENSE for details.

History

Read the CHANGELOG for details. Built with Bashsmith.

Credits

Developed by Brooke Kuhlmann at Alchemists.

About

Shell scripts for applying default settings to UNIX-based operating systems.

http://www.alchemists.io

License:MIT License


Languages

Language:Shell 87.5%Language:Ruby 12.5%