Initial submodule configurations
This commit is contained in:
parent
c653d0a6f0
commit
cb0a965a2b
7 changed files with 30 additions and 0 deletions
12
.gitmodules
vendored
Normal file
12
.gitmodules
vendored
Normal file
|
@ -0,0 +1,12 @@
|
|||
[submodule "zimfw"]
|
||||
path = zimfw
|
||||
url = https://github.com/zimfw/zimfw.git
|
||||
[submodule "vim_runtime"]
|
||||
path = vim_runtime
|
||||
url = https://github.com/amix/vimrc.git
|
||||
[submodule "tmux"]
|
||||
path = tmux
|
||||
url = https://github.com/gpakosz/.tmux.git
|
||||
[submodule "dotbot"]
|
||||
path = dotbot
|
||||
url = https://github.com/anishathalye/dotbot
|
1
dotbot
Submodule
1
dotbot
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 2f4cc0d9cb70235e7c5820dc4e7dd89b1d375fb5
|
14
install
Executable file
14
install
Executable file
|
@ -0,0 +1,14 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
set -e
|
||||
|
||||
CONFIG="install.conf.yaml"
|
||||
DOTBOT_DIR="dotbot"
|
||||
|
||||
DOTBOT_BIN="bin/dotbot"
|
||||
BASEDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||||
|
||||
cd "${BASEDIR}"
|
||||
git submodule update --init --recursive "${DOTBOT_DIR}"
|
||||
|
||||
"${BASEDIR}/${DOTBOT_DIR}/${DOTBOT_BIN}" -d "${BASEDIR}" -c "${CONFIG}" "${@}"
|
0
install.conf.yaml
Normal file
0
install.conf.yaml
Normal file
1
tmux
Submodule
1
tmux
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 8481ec351bda767ded5453471313f35024da33f7
|
1
vim_runtime
Submodule
1
vim_runtime
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 92c9100a4504b27a2924b511a80acfb2e3eae534
|
1
zimfw
Submodule
1
zimfw
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit 214330ddc988617376491b2b365de7f6c87cd4ad
|
Loading…
Reference in a new issue