Added $TERMINAL environment variable.

This commit is contained in:
Sheldon Lee 2022-02-27 20:33:26 +08:00
parent 7e40c142e3
commit 0734220510

View File

@ -3,7 +3,7 @@
# #
# If not running interactively, don't do anything # If not running interactively, don't do anything
[[ $- != *i* ]] && return #[[ $- != *i* ]] && return
alias ls='ls --color=auto' alias ls='ls --color=auto'
PS1='[\u@\h \W]\$ ' PS1='[\u@\h \W]\$ '
@ -14,6 +14,7 @@ set -o vi
# default editor # default editor
export EDITOR=nvim export EDITOR=nvim
export VISUAL=nvim export VISUAL=nvim
export TERMINAL=alacritty
# for java applicatons # for java applicatons
export _JAVA_AWT_WM_NONREPARENTING=1 export _JAVA_AWT_WM_NONREPARENTING=1