You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
330 B
23 lines
330 B
# vim: set ft=sh sw=2 et :
|
|
|
|
##
|
|
## Editors
|
|
##
|
|
export EDITOR=vim
|
|
export TERMINAL=alacritty
|
|
export GIT_EDITOR="$EDITOR"
|
|
export USE_EDITOR="$EDITOR"
|
|
export VISUAL=$EDITOR
|
|
export PAGER=less
|
|
|
|
##
|
|
## Pager
|
|
##
|
|
export PAGER=less
|
|
export LESS='-iFMRSX -x4'
|
|
|
|
if [ -f "$HOME/.shell-env.local" ]; then
|
|
. "$HOME/.shell-env.local"
|
|
fi
|
|
|
|
umask 022
|