Compare commits

...

5 Commits

Author SHA1 Message Date
2fe183e757 feat(tools): Add powerline-go to mise essential tools 2025-10-29 23:57:57 +01:00
e42dcfd45f feat(config): Improve config script for screen
To follow the approach used for the tmux config script.
2025-10-29 23:21:09 +01:00
09f940169f feat(config): Disable git configuration
This is now managed with [chezmoi](https://www.chezmoi.io/) in the
repository
[config-chezmoi](https://gitea.logerais.com/xavier/config-chezmoi).
2025-10-29 22:15:44 +01:00
f4272d1340 feat(os): Remove package manpages-fr-extra 2025-10-18 17:05:34 +00:00
0e2e334e11 feat(os): Add bash-completion package 2025-10-18 16:55:40 +00:00
4 changed files with 40 additions and 33 deletions

View File

@@ -2,28 +2,30 @@
# Configuration GIT # Configuration GIT
git config --global user.name "Xavier Logerais" # Now managed by chezmoi
git config --global user.email "xavier@logerais.com"
git config --global credential.helper cache # git config --global user.name "Xavier Logerais"
# git config --global user.email "xavier@logerais.com"
git config --global merge.conflictstyle diff3 #
git config --global rerere.enabled 1 # git config --global credential.helper cache
#
cat <<EOF >~/.gitignore # git config --global merge.conflictstyle diff3
### asdf ### # git config --global rerere.enabled 1
.tool-versions #
### mise ### # cat <<EOF >~/.gitignore
.mise.toml # ### asdf ###
### direnv ### # .tool-versions
.direnv # ### mise ###
.envrc # .mise.toml
### python ### # ### direnv ###
.venv # .direnv
EOF # .envrc
# ### python ###
cat <<EOF >~/.gitattributes # .venv
EOF # EOF
#
git config --global core.excludesfile ~/.gitignore # cat <<EOF >~/.gitattributes
git config --global core.attributesfile ~/.gitattributes # EOF
#
# git config --global core.excludesfile ~/.gitignore
# git config --global core.attributesfile ~/.gitattributes

View File

@@ -1,9 +1,12 @@
#!/bin/bash #!/bin/bash
# Configuration SCREEN git_repo="https://gitea.cloud.logerais.com/xavier/config-screen.git"
git_branch="master"
config_dir=${XDG_CONFIG_HOME:-$HOME/.config}/screen
if [[ ! -d ~/.screen ]] if [[ ! -d "${config_dir}" ]]; then
then git clone "${git_repo}" --branch "${git_branch}" --recursive "${config_dir}"
git clone --recursive https://gitea.logerais.com/xavier/config-screen.git ~/.screen else
bash ~/.screen/create-links.bash cd "${config_dir}" && git pull
fi fi
ln -sf "${config_dir}/screenrc" "${HOME}/.screenrc"

View File

@@ -5,8 +5,9 @@ if (grep -q Ubuntu <(lsb_release --id --short)); then
sudo apt upgrade -y sudo apt upgrade -y
sudo apt install -y coreutils grep less tar zip unzip tree sudo apt install -y coreutils grep less tar zip unzip tree
sudo apt install -y man manpages-fr manpages-fr-extra sudo apt install -y man manpages-fr
sudo apt install -y bash zsh fish sudo apt install -y bash bash-completion
sudo apt install -y zsh fish
sudo apt install -y screen tmux sudo apt install -y screen tmux
sudo apt install -y git #tig sudo apt install -y git #tig
sudo apt install -y vim sudo apt install -y vim

View File

@@ -17,5 +17,6 @@ test -x ~/.local/bin/mise && eval "$(~/.local/bin/mise activate bash)"
mise settings set experimental true mise settings set experimental true
# Install some essential tools # Install some essential tools
(mise where usage &>/dev/null) || mise use -g usage # for completion (mise where usage &>/dev/null) || mise use -g usage # for help completion
(mise where chezmoi &>/dev/null) || mise use -g chezmoi # to manage dotfiles (mise where chezmoi &>/dev/null) || mise use -g chezmoi # to manage dotfiles
(mise where powerline-go &>/dev/null) || mise use -g powerline-go # for fancy prompt