Moving around some dotfiles. Getting more symlink creation in the script.
This commit is contained in:
parent
6d9a80d8ab
commit
2dcc5f38be
7 changed files with 17 additions and 13 deletions
6
.gitmodules
vendored
6
.gitmodules
vendored
|
|
@ -16,9 +16,3 @@
|
||||||
[submodule "bin/rbenv-git"]
|
[submodule "bin/rbenv-git"]
|
||||||
path = bin/rbenv-git
|
path = bin/rbenv-git
|
||||||
url = git://github.com/sstephenson/rbenv.git
|
url = git://github.com/sstephenson/rbenv.git
|
||||||
[submodule "rbenv/plugins/rbenv-readline"]
|
|
||||||
path = rbenv/plugins/rbenv-readline
|
|
||||||
url = git://github.com/tpope/rbenv-readline.git
|
|
||||||
[submodule "rbenv/plugins/rbenv-openssl"]
|
|
||||||
path = rbenv/plugins/rbenv-openssl
|
|
||||||
url = git://github.com/DevelopStuff/rbenv-openssl.git
|
|
||||||
|
|
|
||||||
|
|
@ -24,9 +24,10 @@ brew install ffind
|
||||||
brew install node
|
brew install node
|
||||||
brew install chruby
|
brew install chruby
|
||||||
brew install ruby-install
|
brew install ruby-install
|
||||||
|
brew install msmtp
|
||||||
brew install mutt
|
brew install mutt
|
||||||
brew install mosh
|
|
||||||
brew install isync
|
brew install isync
|
||||||
|
brew install mosh
|
||||||
brew install haskell-platform
|
brew install haskell-platform
|
||||||
brew install brew-cask
|
brew install brew-cask
|
||||||
brew cask install rdio
|
brew cask install rdio
|
||||||
|
|
@ -54,6 +55,7 @@ brew cleanup
|
||||||
# Ruby TODO -- set up chruby, ruby-install some stuff
|
# Ruby TODO -- set up chruby, ruby-install some stuff
|
||||||
# Gems TODO
|
# Gems TODO
|
||||||
# Node packages TODO
|
# Node packages TODO
|
||||||
|
# Cabal packages TODO
|
||||||
|
|
||||||
# Change to fish shell
|
# Change to fish shell
|
||||||
# TODO check if it's already in there first!!
|
# TODO check if it's already in there first!!
|
||||||
|
|
@ -61,9 +63,7 @@ echo "/usr/local/bin/fish" | sudo tee -a /etc/shells
|
||||||
chsh -s /usr/local/bin/fish dustinswan
|
chsh -s /usr/local/bin/fish dustinswan
|
||||||
|
|
||||||
# Symlinks
|
# Symlinks
|
||||||
rm ~/.vimrc; ln -s ~/dotfiles/vimrc ~/.vimrc
|
bash ~/dotfiles/symlinks.sh
|
||||||
rm -rf ~/.vim; ln -s ~/dotfiles/vim ~/.vim
|
|
||||||
rm ~/.ackrc; ln -s ~/dotfiles/ackrc ~/.ackrc
|
|
||||||
|
|
||||||
# Sane OS X defaults
|
# Sane OS X defaults
|
||||||
bash ~/dotfiles/osx
|
bash ~/dotfiles/osx
|
||||||
1
osx
1
osx
|
|
@ -1,5 +1,4 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
# ~/.osx — http://mths.be/osx
|
# ~/.osx — http://mths.be/osx
|
||||||
|
|
||||||
# Ask for the administrator password upfront
|
# Ask for the administrator password upfront
|
||||||
|
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit ae73a0bd18d197f2319a6a4e23c493d3e1398f87
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit 65dced7119dd568ceee69c4933379586e9d8e197
|
|
||||||
13
symlinks.sh
Normal file
13
symlinks.sh
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
rm ~/.ackrc; ln -s ~/dotfiles/ackrc ~/.ackrc
|
||||||
|
mkdir -p ~/.config/fish; ln -s ~/dotfiles/config.fish ~/.config/fish/config.fish
|
||||||
|
rm ~/.gemrc; ln -s ~/dotfiles/gemrc ~/.gemrc
|
||||||
|
mkdir ~/.ghc; rm ~/.ghc/ghci.conf; ln -s ~/dotfiles/ghci.conf ~/.ghc/ghci.conf
|
||||||
|
rm ~/.gitconfig; ln -s ~/dotfiles/gitconfig ~/.gitconfig
|
||||||
|
rm ~/.mbsyncrc; ln -s ~/dotfiles/mbsyncrc ~/.mbsyncrc
|
||||||
|
rm ~/.msmtprc; ln -s ~/dotfiles/msmtprc ~/.msmtprc
|
||||||
|
rm ~/.ruby-version; ln -s ~/dotfiles/ruby-version ~/.ruby-version
|
||||||
|
rm ~/.tmux.conf; ln -s ~/dotfiles/tmux.conf ~/.tmux.conf
|
||||||
|
rm ~/.vimrc; ln -s ~/dotfiles/vimrc ~/.vimrc
|
||||||
|
rm -rf ~/.vim; ln -s ~/dotfiles/vim ~/.vim
|
||||||
Loading…
Add table
Add a link
Reference in a new issue