diff options
| author | nsfisis <nsfisis@gmail.com> | 2023-09-03 01:55:52 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2023-09-03 01:55:52 +0900 |
| commit | 4182946bb3923396674a4a04cb71713a3d4f7883 (patch) | |
| tree | 759aae5cd57a145ea93fce73a514defaab08ba67 | |
| parent | 8efe665bf615f722e0c90c7f605fa40899a46279 (diff) | |
| download | dotfiles-4182946bb3923396674a4a04cb71713a3d4f7883.tar.gz dotfiles-4182946bb3923396674a4a04cb71713a3d4f7883.tar.zst dotfiles-4182946bb3923396674a4a04cb71713a3d4f7883.zip | |
zsh: change LANG from ja_JP to en_US
| -rw-r--r-- | .zshenv | 16 | ||||
| -rw-r--r-- | .zshrc | 2 |
2 files changed, 13 insertions, 5 deletions
@@ -1,18 +1,28 @@ -# https://wiki.archlinux.org/title/XDG_Base_Directory +# XDG Base Directories +# See: https://wiki.archlinux.org/title/XDG_Base_Directory export XDG_CONFIG_HOME="$HOME/.config" export XDG_CACHE_HOME="$HOME/.cache" export XDG_DATA_HOME="$HOME/.local/share" export XDG_STATE_HOME="$HOME/.local/state" -# Node +# XDG Base Directories: Node.js export NODE_REPL_HISTORY="$XDG_CACHE_HOME/node_repl_history" -# SQLite +# XDG Base Directories: SQLite export SQLITE_HISTORY="$XDG_CACHE_HOME/sqlite_history" +# Locale +export LANG=en_US.UTF-8 +export LC_ALL=C + +# Locale: Less +export LESSCHARSET=utf-8 + + # Path export PATH="$HOME/bin:$HOME/.local/bin:$PATH" + # Nix if [ -e "$HOME/.nix-profile/etc/profile.d/nix.sh" ]; then . "$HOME/.nix-profile/etc/profile.d/nix.sh" @@ -1,5 +1,3 @@ -export LANG=ja_JP.UTF-8 - export VISUAL=nvim export EDITOR=nvim |
