1
0
Fork 0

Compare commits

...

3 Commits

Author SHA1 Message Date
Anton Livaja ddb574bf83
add docker containerd image store config 2025-03-03 06:03:09 -08:00
Anton Livaja 6e9e23a8e6
add split ssh config 2025-03-02 17:58:05 -08:00
Anton Livaja 6c06aff4de
change dir color in terminal 2025-03-02 17:41:20 -08:00
2 changed files with 16 additions and 4 deletions

View File

@ -0,0 +1,5 @@
{
"features": {
"containerd-snapshotter": true
}
}

View File

@ -21,9 +21,6 @@ source ~/.zsh/themes/powerlevel10k/powerlevel10k.zsh-theme
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
GPG_TTY=$(tty)
export GPG_TTY
# Aliases
alias gib='git branch'
alias gis='git status'
@ -37,5 +34,15 @@ bindkey '^[[1;5D' backward-word # ctrl + left arrow -> Move b
bindkey '^[[1;5C' forward-word # Ctrl + right arrow -> Move forward one word
# Color different file types
export LS_COLORS='di=34:ln=36:so=35:pi=33:ex=32:bd=46;34:cd=46;34'
export LS_COLORS='di=94:ln=36:so=35:pi=33:ex=32:bd=46;34:cd=46;34'
alias ls='ls --color=auto'
export GPG_TTY=$(tty)
# SPLIT SSH CONFIGURATION >>>
SSH_VAULT_VM="vault"
if [ "$SSH_VAULT_VM" != "" ]; then
export SSH_AUTH_SOCK="/home/user/.SSH_AGENT_$SSH_VAULT_VM"
fi
# <<< SPLIT SSH CONFIGURATION