Remove dotbot

This commit is contained in:
2018-02-11 12:02:57 +01:00
parent 31e67f6349
commit 959212c9cb
3 changed files with 0 additions and 71 deletions

3
.gitmodules vendored
View File

@@ -1,3 +0,0 @@
[submodule "_dotbot"]
path = _dotbot
url = https://github.com/anishathalye/dotbot

15
dotbot
View File

@@ -1,15 +0,0 @@
#!/usr/bin/env bash
set -e
CONFIG="dotbot.yml"
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}" "${@}"
exit $?

View File

@@ -1,53 +0,0 @@
- defaults:
link:
relink: true
create: true
force: true
relative: true
- link:
~/.autostart:
~/.dotfiles:
path: .
~/.gitconfig:
path: git/gitconfig
~/.gnupg/dirmngr.conf:
path: gnupg/dirmngr.conf
~/.gnupg/gpg-agent.conf:
path: gnupg/gpg-agent.conf
~/.gnupg/gpg.conf:
path: gnupg/gpg.conf
~/.i3:
~/.tmux.conf:
path: tmux/tmux.conf
~/.config/nvim/init.vim:
path: vim/vimrc
~/.vimrc:
path: vim/vimrc
~/.Xresources:
path: x/Xresources
~/.xinitrc:
path: x/xinitrc
~/.zprofile:
path: zsh/zprofile
~/.zshrc:
path: zsh/zshrc
~/.zshrc.d:
path: zsh/zshrc.d
- shell:
- ln -sf ~/.config/nvim/init.vim ~/.vimrc
- xrdb ~/.Xresources
- mkdir -p ~/.var/lib
- mkdir -p ~/.var/log
- mkdir -p ~/.var/run
- mkdir -p ~/.usr/lib
- command: curl --fail --location --create-dirs --output ~/.local/share/nvim/site/autoload/plug.vim https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
stdout: true
stderr: true
- command: nvim -E +PlugInstall +qall || true
stdout: true
stderr: true
- command: test -e ~/.local/share/nvim/plugged/YouCompleteMe/third_party/ycmd/ycm_core.so || bash -c "cd ~/.local/share/nvim/plugged/YouCompleteMe && ./install.py" || true
stdout: true
stderr: true