fish: set XDG environment variables

This commit is contained in:
Charles Gould 2021-07-16 10:20:37 -04:00
parent 4146c9200e
commit e88d200a1e

View File

@ -1,4 +1,8 @@
# Environment variables # Environment variables
set -q XDG_CACHE_HOME; or set -gx XDG_CACHE_HOME "$HOME/.cache"
set -q XDG_CONFIG_HOME; or set -gx XDG_CONFIG_HOME "$HOME/.config"
set -q XDG_DATA_HOME; or set -gx XDG_DATA_HOME "$HOME/.local/share"
set -gx BAT_STYLE plain set -gx BAT_STYLE plain
set -gx EDITOR nvim set -gx EDITOR nvim
set -gx LANG en_US.UTF-8 set -gx LANG en_US.UTF-8