-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.conf.yml
28 lines (24 loc) · 1.35 KB
/
install.conf.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
---
- defaults:
links:
create: true
relink: true
force: true
- clean: ['~']
- link:
~/.aliases: .aliases
~/.bashrc: .bashrc
~/.editorconfig: .editorconfig
~/.functions: .functions
~/.exports: .exports
~/.gitconfig: .gitconfig
~/.gitignore: .gitignore
~/.screenrc: .screenrc
~/.vimrc: .vimrc
- shell:
- ["rm -rf ~/.oh-my-zsh && sh -c \"$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)\"", "Installing oh-my-zsh"]
- ["rm -rf $ZSH_CUSTOM/plugins/zsh-autosuggestion && git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions", "Installing zsh-autosuggestion"]
- ["rm -rf $ZSH_CUSTOM/plugins/zsh-syntax-highlighting && git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting", "Installing zsh-syntax-highlighting"]
- ["rm -rf $ZSH_CUSTOM/plugins/zsh-completions && git clone https://github.com/zsh-users/zsh-completions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-completions", "Installing zsh-completions"]
- ["ln -s -f $PWD/.zshrc ~/.zshrc", "Creating symlink for .zshrc in $HOME"]
- ["rm -rf ~/.vim/bundle/Vundle.vim && git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim", "Installing Vundle"]