Skip to content

Commit a751b28

Browse files
Add dotbot install script, liquidprompt, update osx.sh, brew.sh
1 parent 7e2151d commit a751b28

File tree

7 files changed

+34
-0
lines changed

7 files changed

+34
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
gitfiles/gitconfig.local

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
[submodule "dotbot"]
22
path = dotbot
33
url = https://github.com/anishathalye/dotbot
4+
[submodule "liquidprompt"]
5+
path = liquidprompt
6+
url = https://github.com/nojhan/liquidprompt.git

.install.conf.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
- clean: ['~']
2+
3+
- link:
4+
~/.bashrc: bashrc
5+
~/.zsh: zsh
6+
~/.emacs: emacs
7+
~/.dotfiles: ''
8+
~/.vim: vim/
9+
~/.vimrc: vimrc
10+
11+
- shell:
12+
- [git submodule update --init --recursive, Installing submodules]

brew.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ brew upgrade
1717
brew install fish --HEAD
1818
brew install hub
1919
brew install macvim --with-lua --custom-icons --override-system-vim --HEAD
20+
brew install pandoc
2021
brew install python
2122
brew install ruby
2223
brew install ssh-copy-id

install

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#!/usr/bin/env bash
2+
3+
set -e
4+
5+
CONFIG=".install.conf.yaml"
6+
DOTBOT_DIR="dotbot"
7+
8+
DOTBOT_BIN="bin/dotbot"
9+
BASEDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
10+
11+
cd "${BASEDIR}"
12+
13+
(cd "${DOTBOT_DIR}" && git submodule update --init --recursive)
14+
"${BASEDIR}/${DOTBOT_DIR}/${DOTBOT_BIN}" -d "${BASEDIR}" -c "${CONFIG}" "${@}"

liquidprompt

Submodule liquidprompt added at dbe3c15

osx.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/usr/bin/env bash
22

3+
# Dervied from https://github.com/daviesjamie/dotfiles
4+
35
# Get administrator privileges
46
sudo -v
57

0 commit comments

Comments
 (0)