- Supprimés : fish, qtile, X, vim, sway, neomutt (+ package systemd vide) - Nouveau package hyprland : waybar, rofi, mako, gammastep, rofi-pass, systemd (mail+kanata+mpd+voxtype), script rofi - Nouveau package aerc : config aerc + infra mail (msmtp, khard, vdirsyncer) migrée depuis neomutt - Nettoyage .gitignore : suppression entrées neomutt/vim, ajout patterns moc/mpd/vifm manquants, vdirsyncer/status pour aerc - Mise à jour des configs trackées modifiées (nvim, zsh, tmux, git, newsboat) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
21 lines
441 B
Bash
21 lines
441 B
Bash
#export TERM='rxvt-256color'
|
|
|
|
# XDG
|
|
export XDG_CONFIG_HOME=$HOME/.config
|
|
|
|
# editor
|
|
export EDITOR="nvim"
|
|
export VISUAL="nvim"
|
|
|
|
|
|
# zsh
|
|
export ZDOTDIR="$XDG_CONFIG_HOME/zsh"
|
|
export HISTFILE="$ZDOTDIR/.zhistory" # History filepath
|
|
export HISTSIZE=10000 # Maximum events for internal history
|
|
export SAVEHIST=10000 # Maximum events in history file
|
|
|
|
|
|
|
|
# opencode
|
|
export PATH=/home/lafrite/.opencode/bin:$PATH
|