diff --git a/.zshrc b/.zshrc index 9918e25..fb16ec9 100644 --- a/.zshrc +++ b/.zshrc @@ -535,13 +535,24 @@ else echo_error "No bc, so no math will work" fi +_environment(){ + if command_exists nvim; then + export EDITOR="nvim" + fi + + if command_exists ranger; then + export RANGER_LOAD_DEFAULT_RC="FALSE" + fi +} + main(){ get_packager _init _alias _coding_ + _environment } if check_root; then main fi - echo "$bat" + # echo "$bat"