1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_dotfiles.git synced 2024-08-16 16:09:49 +02:00
ansible_role_dotfiles/defaults/main.yml

32 lines
848 B
YAML
Raw Normal View History

2018-11-15 15:04:18 +01:00
---
# should we install keychain for improved ssh-add support?
# It is recomended for desctop users but completly useless for server installations...
2019-03-08 11:33:28 +01:00
install_keychain: False
2018-11-15 15:04:18 +01:00
# allow additional entys in the local .basrc file
2019-03-15 11:17:38 +01:00
extra_bashrc: ''
# if set to False the .bashrc of the root user will be deleted.
# all that he really need are some parametes of the global /etc/bash.bashrc file...
2019-04-30 09:42:37 +02:00
allow_own_root_bashrc: true
# enable version check for this role
# (highly recomended for stupid users)
submodules_versioncheck: true
2019-06-07 17:21:23 +02:00
# show hidden files in ranger
ranger_hidden_files: true
2019-06-11 13:34:56 +02:00
# affected user accounts
accounts:
- "{{ ansible_user_id }}"
2019-07-01 14:59:52 +02:00
2019-07-29 08:00:33 +02:00
# some additional aliases
2019-07-29 08:05:43 +02:00
git_pull_alias: false
2019-07-29 08:00:33 +02:00
git_typo_alias: true
2019-09-26 15:17:01 +02:00
# default editor/visual
install_editor: true
dotfiles_default_editor: '/usr/bin/vim'
dotfiles_default_visual: '/usr/bin/gedit'