Skip to content

Commit

Permalink
Use $HOME as much as possible
Browse files Browse the repository at this point in the history
  • Loading branch information
jackfranklin committed Aug 16, 2017
1 parent 337a5eb commit cc4583f
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
1 change: 0 additions & 1 deletion Brewfile
Expand Up @@ -30,7 +30,6 @@ cask 'appcleaner'
cask '1password'
cask 'megasync', args: { appdir: "/Applications" }
cask 'boom'
mas 'divvy'



2 changes: 1 addition & 1 deletion Makefile
@@ -1,4 +1,4 @@
DIR=/Users/jackfranklin/dotfiles
DIR="${HOME}/dotfiles

all:
@echo "Run things individually!"
Expand Down
2 changes: 1 addition & 1 deletion git/gitconfig
Expand Up @@ -35,7 +35,7 @@
[help]
autocorrect = 1
[core]
excludesfile = /Users/jackfranklin/.gitignore_global
excludesfile = ~/.gitignore_global
pager = /usr/local/share/git-core/contrib/diff-highlight/diff-highlight | less -r
[url "git@github.com:"]
insteadOf = https://github.com/
Expand Down
2 changes: 1 addition & 1 deletion tmux/tmux.conf
@@ -1,5 +1,5 @@
# look good
set -g default-terminal "tmux-256color"
set -g default-terminal "screen-256color"

# better pane splitting
bind-key - split-window -v -c '#{pane_current_path}'
Expand Down
11 changes: 7 additions & 4 deletions zsh/zshrc
Expand Up @@ -47,7 +47,7 @@ antigen bundle robbyrussell/oh-my-zsh plugins/z
antigen bundle zsh-users/zsh-autosuggestions
antigen apply

export NVM_DIR="/Users/jackfranklin/.nvm"
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"

# from https://github.com/creationix/nvm#deeper-shell-integration
Expand Down Expand Up @@ -98,7 +98,10 @@ export PATH="$HOME/.bin:$PATH"
# yarn
export PATH="$PATH:`yarn global bin`"

source ~/.songkickrc
export ORGNAME=crowdsurge

# export VISUAL="nvr -cc split --remote-wait +'set bufhidden=wipe'"
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion

export WORKON_HOME="$HOME/.virtualenvs"
export PROJECT_HOME="$HOME/Work"
source /usr/local/bin/virtualenvwrapper.sh
# export PATH="$PATH:/Applications/Postgres.app/Contents/Versions/9.5/bin"

0 comments on commit cc4583f

Please sign in to comment.