File tree 5 files changed +76
-18
lines changed
5 files changed +76
-18
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 1
- npm-debug.log
1
+ .svn
2
+ * ~
3
+ * .swp
4
+ .subversion
5
+ .ssh
6
+
7
+ # Folder view configuration files
2
8
.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
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 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"
2
5
3
6
if which ruby >/dev/null && which gem >/dev/null; then
4
7
PATH="$(ruby -rubygems -e 'puts Gem.user_dir')/bin:$PATH"
Original file line number Diff line number Diff line change @@ -31,9 +31,10 @@ git remote add origin https://github.com/kevinSuttle/dotfiles.git;
31
31
git fetch origin;
32
32
mkdir -p ~ /Code && cd $_ ;
33
33
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;
36
36
37
37
rbenv install 2.4.3;
38
38
mkdir -p ~ /.nvm;
39
+ curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.8/install.sh | bash;
39
40
nvm install --lts;
You can’t perform that action at this time.
0 commit comments