Files
dotfiles/.shell-env
dimti 53fd7fa1ab - remove unnecessary nix packages add them - ncdu, alacritty
+ bash aliases file
+ spacevim
+ username formatting for starship terminal
2023-04-14 09:22:37 +03:00

24 lines
331 B
Bash

# vim: set ft=sh sw=2 et :
##
## Editors
##
export EDITOR=nvim
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