Configure locale to en_US.UTF-8, use vim as default git edit, and bump EvoBSD version

Configure locale to en_US.UTF-8 in .profile file so that "git log" displays the accents correctly
Use vim as default git editor for the same reason, and because its better than vi
Bump EvoBSD version : OpenBSD 7.0 is out
This commit is contained in:
Jérémy Dubois 2021-12-09 11:03:38 +01:00
parent 85fe9f6703
commit 798a87b0ff
4 changed files with 16 additions and 1 deletions

View File

@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [7.0.0] - 2021-12-09
### Changed
- Configure locale to en_US.UTF-8 in .profile file so that "git log" displays the accents correctly
- Use vim as default git editor
## [6.9.2] - 2021-10-15
### Added

View File

@ -1,4 +1,4 @@
# EvoBSD 6.9.2
# EvoBSD 7.0.0
EvoBSD is an ansible project used for customising OpenBSD hosts
used by Evolix.

View File

@ -4,6 +4,8 @@
PATH="{{ evobsd_path }}"
export PATH HOME TERM
export LANG="en_US.UTF-8"
export LC_ALL="en_US.UTF-8"
export PS1="\u@\h:\w\\$ "
HISTFILE=$HOME/.histfile
export HISTSIZE=10000

View File

@ -44,6 +44,12 @@
tags:
- etc-git
- name: Set vim as default editor
git_config:
name: core.editor
scope: global
value: vim
- name: does /etc/ have any commit?
command: "git log"
args: