Files
dotfiles/.shell-env
dimti aeb7bd17f5 * revert auto tmux attach logic for only if TMUX is empty and if SSH_CONNECTION is active
* use tmux 3+ config by default
* fix default EDITOR set to vim
* remove unnecessary PATH definition (previously used for correct environment for proxmox pct enter command)
2023-09-12 14:37:01 +03:00

24 lines
330 B
Bash

# 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