-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv
More file actions
39 lines (30 loc) · 902 Bytes
/
Copy pathenv
File metadata and controls
39 lines (30 loc) · 902 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# System default
# --------------------------------------------------------------------
[ -z ${PLATFORM} ] && export PLATFORM=$(uname -s)
# Options
# --------------------------------------------------------------------
# ENABLE_CORRECTION="true"
COMPLETION_WAITING_DOTS="true"
DISABLE_UNTRACKED_FILES_DIRTY="true"
# history max num
export HISTSIZE=100000
# history max save
export SAVEHIST=100000
# export HISTFILE=~/.histfile
export EDITOR=vim
export VISUAL=vim # for c-x c-e
# display language
export LANG="en_US.UTF-8"
export LANGUAGE="en_US"
export LC_COLLATE="en_US.UTF-8"
export LC_CTYPE="en_US.UTF-8"
export LC_MESSAGES="en_US.UTF-8"
export LC_MONETARY="en_US.UTF-8"
export LC_NUMERIC="en_US.UTF-8"
export LC_TIME="en_US.UTF-8"
# export LC_ALL=
# locale -v
# 启用高阶 SHELL 配置
export SHELL_EXTEND=true
# 环境变量
PATH="$HOME/.dotfiles/bin:$HOME/.local/bin:$HOME/.bin:$PATH"