diff options
author | Aaron LI <aaronly.me@outlook.com> | 2017-02-12 17:09:26 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@outlook.com> | 2017-02-12 17:09:26 +0800 |
commit | d544909bd58f95c4be11d1347d53d6563c6ad65d (patch) | |
tree | c2371c89d48d725ee65c19c2df8497e84d7f1b66 | |
parent | 316129cf727f3f237d0f8a9898555905ce0df5eb (diff) | |
download | dotfiles-d544909bd58f95c4be11d1347d53d6563c6ad65d.tar.bz2 |
profile: Do not explicitly set "TERM"
Let the terminal application to set the appropriate terminal type,
e.g., tmux will set its TERM to "screen-256color" which will work
well with ZSH special key bindings.
-rw-r--r-- | _profile | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -77,10 +77,8 @@ export QT_IM_MODULE="${INPUT_METHOD}" # Enable the CJK N-gram tokenization algorithm for CJK indexing and search export XAPIAN_CJK_NGRAM=1 -# Default terminal type to enable more colors -export TERM="xterm-256color" - export EDITOR="vim" +export VISUAL="${EDITOR}" export PAGER="less" export LESS="--ignore-case --raw-control-chars" |