Skip to content

Commit 0c82cf2

Browse files
KevinKevin
Kevin
authored and
Kevin
committed
Update order and config for new machine
1 parent 6f6a7de commit 0c82cf2

File tree

5 files changed

+76
-18
lines changed

5 files changed

+76
-18
lines changed

.bash_profile

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
source ~/env
2+
source ~/aliases
3+
source ~/colors
4+
source ~/extras
5+
source ~/prompt
6+
7+
source ~/bash/colors.sh
8+
source ~/bash/extras.sh
9+
source ~/bash/prompt.sh
10+
11+
shopt -s cdspell
12+
shopt -s checkwinsize
13+
shopt -s histappend
14+
shopt -s nocaseglob
15+
16+
export NVM_DIR="$HOME/.nvm"
17+
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm

.gitignore

+52-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,53 @@
1-
npm-debug.log
1+
.svn
2+
*~
3+
*.swp
4+
.subversion
5+
.ssh
6+
7+
# Folder view configuration files
28
.DS_Store
9+
Desktop.ini
10+
11+
# Thumbnail cache files
12+
._*
13+
Thumbs.db
14+
15+
# Files that might appear on external disks
16+
.Spotlight-V100
17+
.Trashes
18+
.Trash
19+
20+
# NPM
21+
npm-debug.log
22+
node_modules
23+
bower_components
24+
25+
# IDEs
26+
.idea
27+
.nvm
28+
29+
# Fish
30+
fish/fish_history
31+
fish/fishd.*
32+
33+
# Bash
34+
.bash_history
35+
36+
# Misc
37+
.CFUserTextEncoding
38+
.bash_sessions
39+
40+
.rbenv
41+
.nvm
42+
.viminfo
43+
44+
Applications
45+
Code
46+
Desktop
47+
Documents
48+
Downloads
49+
Library
50+
Movies
51+
Music
52+
Pictures
53+
Public

env

-14
This file was deleted.

extras

100644100755
+4-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
[ -f ~.travis/travis.sh ] && source ~.travis/travis.sh
1+
export EDITOR=vim
2+
3+
export NVM_DIR="$HOME/.nvm"
4+
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"
25

36
if which ruby >/dev/null && which gem >/dev/null; then
47
PATH="$(ruby -rubygems -e 'puts Gem.user_dir')/bin:$PATH"

setup.sh

+3-2
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,10 @@ git remote add origin https://github.com/kevinSuttle/dotfiles.git;
3131
git fetch origin;
3232
mkdir -p ~/Code && cd $_;
3333

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

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

0 commit comments

Comments
 (0)