-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.conf.yaml
39 lines (38 loc) · 1.2 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
- shell:
- [git submodule update --init --recursive, Installing submodules]
- link:
~/.bash-git-prompt:
force: true
path: bash-git-prompt/
~/.config/terminator:
create: true
force: true
path: config/terminator/
~/.vimrc:
force: true
path: vimrc
~/.vimrc.first:
force: true
path: vimrc.first
~/.vimrc.last:
force: true
path: vimrc.last
~/.vimrc.plugins:
force: true
path: vimrc.plugins
~/.config/nvim/init.vim:
force: true
path: nvimrc
~/.nvim.plugins:
force: true
path: nvimrc.plugins
~/.bash_extras:
force: true
path: bash_extras
- shell:
- ["wget https://github.com/Shougo/deoplete.nvim/tarball/master -O - | tar xz -C ~/.config/nvim --strip-components=1", Cloning Deoplete]
- ["curl -fLo ~/.config/nvim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim",Installig Vim-Plug]
- [pip install neovim --user ,Installig neovim Python2 Plugin]
- [pip3 install neovim --user ,Installig neovim Python3 Plugin]
- [nvim +UpdateRemotePlugins +qall,Installing Deoplete]
- [nvim +PlugInstall +qall,Installing Deoplete]