This commit is contained in:
Werner
2023-03-27 15:03:48 -03:00
3 changed files with 15 additions and 3 deletions

View File

@ -14,7 +14,10 @@ HISTSIZE=1000
SAVEHIST=1000
HISTFILE=~/.zsh_history
. $HOME/.asdf/asdf.sh
if [ "$(uname)" != "Darwin" ]
then
. $HOME/.asdf/asdf.sh
fi
# append completions to fpath
fpath=(${ASDF_DIR}/completions $fpath)
@ -28,7 +31,12 @@ zstyle ':completion:*' completer _expand _complete _correct _approximate
zstyle ':completion:*' format 'Completing %d'
zstyle ':completion:*' group-name ''
zstyle ':completion:*' menu select=2
eval "$(dircolors -b)"
if [ "$(uname)" != "Darwin" ]
then
eval "$(dircolors -b)"
fi
zstyle ':completion:*:default' list-colors ${(s.:.)LS_COLORS}
zstyle ':completion:*' list-colors ''
zstyle ':completion:*' list-prompt %SAt %p: Hit TAB for more, or the character to insert%s

View File

@ -1 +1,3 @@
#!/usr/bin/env zsh
touch ~/.hushlogin

View File

@ -1,9 +1,11 @@
#!/usr/bin/env sh
export DEBIAN_FRONTEND=noninteractive
touch ~/.hushlogin
# Update
export DEBIAN_FRONTEND=noninteractive
sudo apt update && sudo apt upgrade -y
# Dependencies