diff --git a/.gitmodules b/.gitmodules deleted file mode 100644 index 55d4489..0000000 --- a/.gitmodules +++ /dev/null @@ -1,3 +0,0 @@ -[submodule "_dotbot"] - path = _dotbot - url = https://github.com/anishathalye/dotbot diff --git a/dotbot b/dotbot deleted file mode 100755 index eb45cee..0000000 --- a/dotbot +++ /dev/null @@ -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 $? diff --git a/dotbot.yml b/dotbot.yml deleted file mode 100644 index fa94c55..0000000 --- a/dotbot.yml +++ /dev/null @@ -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