ansible-role-common/defaults/main.yml
Jannik Beyerstedt d084912154 Usersettings: Add variable to disable vim plugings
Some systems just don't need them, but they take quite some time to
install and take up space.
2023-01-07 17:41:41 +01:00

28 lines
623 B
YAML

---
# defaults file for common
default_pip3_exe: pip3
# just copy dotfiles (for foreign hosts like webhosting)
common_settingsonly: false
# change login shell
usersetup_chsh: true
# override global gitconfig
usersetup_gitconfig: true
# enable virtualenvwrapper plugin in oh-my-zsh
usersetup_virtualenvwrapper: false
# install VIM plugins
usersetup_vimplugins: true
# install VS Code and selectively activate different programming languages
user_vscode: false
user_lang_cpp: false
user_lang_python: false
user_lang_golang: false
user_lang_golang_gopath: "{{ ansible_user_dir }}/Development/go"
user_lang_latex: false