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

59 lines
2.4 KiB
YAML
Raw Normal View History

2018-11-15 15:04:18 +01:00
---
# enable basic version check for this role
# set it to true to use it (recomended)
submodules_versioncheck: false
2018-11-15 15:04:18 +01:00
# for some ansible features we need the python selinux package at fedora
# disable it, if you don't want it
dotfiles__install_python_selinux: true
2019-03-15 11:17:38 +01:00
# modify bashrc
dotfiles__modify_bashrc: true
# list of aliases used in bashrc
dotfiles__aliases:
- { alias: "ls", command: "ls ", color: true }
- { alias: "grep", command: "grep", color: true }
- { alias: "ll", command: "ls -alF", color: false }
- { alias: "la", command: "ls -A", color: false }
- { alias: "l", command: "ls -CF", color: false }
- { alias: "lz", command: "ls -Z", color: false }
- { alias: "EDITOR", command: "/usr/bin/vim", color: false }
- { alias: "VISUAL", command: "/usr/bin/gedit", color: false }
- { alias: "gitsubpull", command: "git submodule foreach '(git checkout \\$(git symbolic-ref --short refs/remotes/origin/HEAD | sed 's@^origin/@@'); git pull)'", color: false }
2021-01-26 16:26:57 +01:00
- { alias: "pwgen", command: "/usr/bin/pwgen --num-passwords=3000 --numerals --capitalize --secure --no-vowels --ambiguous 95 1", color: false }
# enable bash completion
dotfiles__bash_completion_enabled: true
# fancy promt
2021-01-14 21:37:55 +01:00
dotfiles__user_prompt: '\[\033[01;33m\] $(printf "\xE2\x9D\xA4") \[\033[01;32m\]\u\[\033[01;36m\]@\[\033[01;32m\]\H\[\033[01;34m\] <\A> \[\033[01;35m\] \j \[\033[01;36m\] \w \[\033[01;33m\]\n\[\033[01;33m\] $(git branch 2>/dev/null | sed -n "s/* \(.*\)/\1 /p")$\[\033[01;00m\]'
dotfiles__root_prompt: '\[\033[01;31m\] $(printf "\xE2\x9D\xA4") \[\033[01;32m\]\u\[\033[01;36m\]@\[\033[01;32m\]\H\[\033[01;34m\] <\A> \[\033[01;35m\] \j \[\033[01;36m\] \w \[\033[01;33m\]\n\[\033[01;33m\] $(git branch 2>/dev/null | sed -n "s/* \(.*\)/\1 /p")$\[\033[01;00m\]'
# modify bash history
dotfiles__history_control: 'ignoreboth'
dotfiles__history_size: '-1'
dotfiles__history_file_size: '-1'
# optional additional entries to /etc/bash.bashrc
dotfiles__additional_bashrc_lines: []
# - eval `foo`
# - tmux new-session
# optional additional entries to ~/.bashrc
dotfiles__additional_user_bashrc_lines: []
# - eval $(keychain --eval --quiet id_ed25519)
# optionally allow custom bashrc for root
dotfiles__allow_own_root_bashrc: false
# otional custom commands
dotfiles__custom_config: []
# - { user: "l3d", cmd: "eval $(keychain --eval --quiet id_ed25519)"
2019-06-07 17:21:23 +02:00
# show hidden files in ranger
dotfiles__ranger_hidden_files: true
2019-06-11 13:34:56 +02:00
accounts:
- "{{ ansible_user_id }}"