forked from anishathalye/dotfiles_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.conf.yaml
32 lines (30 loc) · 955 Bytes
/
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
- clean: ['~']
- link:
~/.vim: vim/
~/.vimPlugins: vimPlugins
~/.vimrc: vimrc
~/.zshrc: zshrc
~/.npmrc: npmrc
~/.yarnrc: yarnrc
~/.oh-my-zsh: oh-my-zsh
~/.latexmkrc: latexmkrc
~/.gvimrc: gvimrc
~/.bashrc: bashrc
~/.gitconfig: gitconfig
~/.fonts: fonts
~/bin: bin
~/.config/libinput-gestures.conf:
create: true
path: libinput-gestures.conf
~/.config/sublime-text-3/Packages/User :
create: true
path: sublime
~/.config/Code/User :
create: true
path: vscode-settings
- shell:
- [git submodule update --init --recursive, Installing submodules]
- [vim -u ~/.vimPlugins +PluginInstall +qall, Installing VIM plugins]
- [npm install -g n, Installing Global Node Packages]
- [while read l; do code --install-extension $l; done < vscode-extensions, Installing VS Code Extensions]
- [gem install asciidoctor asciidoc asciidoctor-pdf --pre]