mirror of
https://github.com/guilhermewerner/dotfiles
synced 2025-06-14 18:34:19 +00:00
Merge branch 'main' of https://github.com/GuilhermeWerner/Setup
This commit is contained in:
@ -14,7 +14,10 @@ HISTSIZE=1000
|
|||||||
SAVEHIST=1000
|
SAVEHIST=1000
|
||||||
HISTFILE=~/.zsh_history
|
HISTFILE=~/.zsh_history
|
||||||
|
|
||||||
. $HOME/.asdf/asdf.sh
|
if [ "$(uname)" != "Darwin" ]
|
||||||
|
then
|
||||||
|
. $HOME/.asdf/asdf.sh
|
||||||
|
fi
|
||||||
|
|
||||||
# append completions to fpath
|
# append completions to fpath
|
||||||
fpath=(${ASDF_DIR}/completions $fpath)
|
fpath=(${ASDF_DIR}/completions $fpath)
|
||||||
@ -28,7 +31,12 @@ zstyle ':completion:*' completer _expand _complete _correct _approximate
|
|||||||
zstyle ':completion:*' format 'Completing %d'
|
zstyle ':completion:*' format 'Completing %d'
|
||||||
zstyle ':completion:*' group-name ''
|
zstyle ':completion:*' group-name ''
|
||||||
zstyle ':completion:*' menu select=2
|
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:*:default' list-colors ${(s.:.)LS_COLORS}
|
||||||
zstyle ':completion:*' list-colors ''
|
zstyle ':completion:*' list-colors ''
|
||||||
zstyle ':completion:*' list-prompt %SAt %p: Hit TAB for more, or the character to insert%s
|
zstyle ':completion:*' list-prompt %SAt %p: Hit TAB for more, or the character to insert%s
|
||||||
|
@ -1 +1,3 @@
|
|||||||
#!/usr/bin/env zsh
|
#!/usr/bin/env zsh
|
||||||
|
|
||||||
|
touch ~/.hushlogin
|
||||||
|
@ -1,9 +1,11 @@
|
|||||||
#!/usr/bin/env sh
|
#!/usr/bin/env sh
|
||||||
|
|
||||||
export DEBIAN_FRONTEND=noninteractive
|
touch ~/.hushlogin
|
||||||
|
|
||||||
# Update
|
# Update
|
||||||
|
|
||||||
|
export DEBIAN_FRONTEND=noninteractive
|
||||||
|
|
||||||
sudo apt update && sudo apt upgrade -y
|
sudo apt update && sudo apt upgrade -y
|
||||||
|
|
||||||
# Dependencies
|
# Dependencies
|
||||||
|
Reference in New Issue
Block a user