* initial commit - dotfiles based on DoomHammer

This commit is contained in:
2023-04-11 17:21:55 +03:00
commit 17ade4a5e4
25 changed files with 1520 additions and 0 deletions

22
.shell-env Normal file
View File

@ -0,0 +1,22 @@
# vim: set ft=sh sw=2 et :
##
## Editors
##
export EDITOR=vi
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