forked from yoava333/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.conf.yaml
47 lines (42 loc) · 1.22 KB
/
install.conf.yaml
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
- clean: ['~']
- defaults:
link:
relink: true
- shell:
- [sleep 0, Installing dotfiles]
#- ["sudo add-apt-repository -y ppa:neovim-ppa/stable", Installing dependencies]
- ["sudo apt update", Update dependencies]
- ["sudo apt install -y zsh neovim git curl python3-pip cmake silversearcher-ag fonts-powerline", Installing dependencies]
- ["python3 -m pip install neovim --user", Install python packages]
-
command: [git pull, Updating dotfiles]
stdout: true
stderr: true
# install zsh
- shell:
-
command: [zsh/install_prezto.sh, Install zsh]
- link:
~/.vim/autoload/plug.vim:
create: true
path: vim/autoload/plug.vim
~/.local/share/nvim/site/autoload/plug.vim:
create: true
path: vim/autoload/plug.vim
~/.vimrc: vim/vimrc
~/.config/nvim/init.vim:
create: true
path: vim/vimrc
~/.vim: vim/
~/.tmux.conf: tmux/tmux.conf
~/.gitconfig: gitconfig
# ~/.zshrc: zsh/zshrc
# ~/.zshenv: zsh/zshenv
~/.bashrc: bash/bashrc
- shell:
-
command: [vim +PlugInstall +qall now, Installing Vim plugins]
command: [nvim +PlugInstall +qall now, Installing Vim plugins]
stdin: true
stdout: true
stderr: true