Compare commits

..

No commits in common. "9d05d657599618e532bbd3af6b87e92fdff47a85" and "1a479eb5e1d57ebcc8ce6ba5b2eea169011e6c1d" have entirely different histories.

3 changed files with 2 additions and 16 deletions

View file

@ -1,9 +1 @@
alias welcome="welcome --extra-logos-dir $K_ZSH_DOTFILES/../script-resources/welcome/logos" alias welcome="welcome --extra-logos-dir $K_ZSH_DOTFILES/../script-resources/welcome/logos"
if (( _is_macos )); then
if command_exists exa; then
alias ls="exa --classify --group-directories-first"
else
alias ls="ls --group-directories-first --color=auto"
fi
fi

View file

@ -1,9 +1,9 @@
#!/usr/bin/env zsh #!/usr/bin/env zsh
_plugin() { _plugin() {
[ -z "$DOTFILES_LOAD_SILENT" ] && _perf_timer_start "plugin $1" _perf_timer_start "plugin $1"
plugin "$@" plugin "$@"
[ -z "$DOTFILES_LOAD_SILENT" ] && _perf_timer_stop "plugin $1" _perf_timer_stop "plugin $1"
} }
_plugin gitio 'denysdovhan/gitio-zsh' _plugin gitio 'denysdovhan/gitio-zsh'

View file

@ -1,7 +1,5 @@
#!/usr/bin/env zsh #!/usr/bin/env zsh
DOTFILES_DISABLE_WELCOME=1
# Get this file's current directory and source Dima's zshrc from there # Get this file's current directory and source Dima's zshrc from there
K_ZSH_DOTFILES="$( dirname "$( readlink -f "$0" )" )" K_ZSH_DOTFILES="$( dirname "$( readlink -f "$0" )" )"
source $K_ZSH_DOTFILES/../dmitmel-dotfiles/zsh/zshrc source $K_ZSH_DOTFILES/../dmitmel-dotfiles/zsh/zshrc
@ -15,7 +13,3 @@ if [[ -d "$K_ZSH_DOTFILES/custom" ]]; then
source "$script" source "$script"
done done
fi fi
if [[ -z "$KDOTFILES_DISABLE_WELCOME" && -z "$POETRY_ACTIVE" ]]; then
welcome
fi