Remove dotbot
This commit is contained in:
3
.gitmodules
vendored
3
.gitmodules
vendored
@@ -1,3 +0,0 @@
|
||||
[submodule "_dotbot"]
|
||||
path = _dotbot
|
||||
url = https://github.com/anishathalye/dotbot
|
||||
15
dotbot
15
dotbot
@@ -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 $?
|
||||
53
dotbot.yml
53
dotbot.yml
@@ -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
|
||||
Reference in New Issue
Block a user