Skip to content

Commit

Permalink
Update order and config for new machine
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin authored and Kevin committed Dec 26, 2017
1 parent 6f6a7de commit 0c82cf2
Show file tree
Hide file tree
Showing 5 changed files with 76 additions and 18 deletions.
17 changes: 17 additions & 0 deletions .bash_profile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
source ~/env
source ~/aliases
source ~/colors
source ~/extras
source ~/prompt

source ~/bash/colors.sh
source ~/bash/extras.sh
source ~/bash/prompt.sh

shopt -s cdspell
shopt -s checkwinsize
shopt -s histappend
shopt -s nocaseglob

export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm
53 changes: 52 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,53 @@
npm-debug.log
.svn
*~
*.swp
.subversion
.ssh

# Folder view configuration files
.DS_Store
Desktop.ini

# Thumbnail cache files
._*
Thumbs.db

# Files that might appear on external disks
.Spotlight-V100
.Trashes
.Trash

# NPM
npm-debug.log
node_modules
bower_components

# IDEs
.idea
.nvm

# Fish
fish/fish_history
fish/fishd.*

# Bash
.bash_history

# Misc
.CFUserTextEncoding
.bash_sessions

.rbenv
.nvm
.viminfo

Applications
Code
Desktop
Documents
Downloads
Library
Movies
Music
Pictures
Public
14 changes: 0 additions & 14 deletions env

This file was deleted.

5 changes: 4 additions & 1 deletion extras
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
[ -f ~.travis/travis.sh ] && source ~.travis/travis.sh
export EDITOR=vim

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

if which ruby >/dev/null && which gem >/dev/null; then
PATH="$(ruby -rubygems -e 'puts Gem.user_dir')/bin:$PATH"
Expand Down
5 changes: 3 additions & 2 deletions setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,10 @@ git remote add origin https://github.com/kevinSuttle/dotfiles.git;
git fetch origin;
mkdir -p ~/Code && cd $_;

git clone https://github.com/kevinSuttle/macOS-Defaults.git macOS-defaults -b suttle && cd $_;
source .osx;
# git clone https://github.com/kevinSuttle/macOS-Defaults.git macOS-defaults -b suttle && cd $_;
# source .osx;

rbenv install 2.4.3;
mkdir -p ~/.nvm;
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.8/install.sh | bash;
nvm install --lts;

0 comments on commit 0c82cf2

Please # to comment.