forked from lrvick/dotfiles
Compare commits
No commits in common. "ddb574bf83ebd1aae11a0b2526f4cc9c6ce1d8bb" and "19de06e60f7ebf2c760b6609a1edaf694396419c" have entirely different histories.
ddb574bf83
...
19de06e60f
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
"features": {
|
|
||||||
"containerd-snapshotter": true
|
|
||||||
}
|
|
||||||
}
|
|
15
zsh/.zshrc
15
zsh/.zshrc
|
@ -21,6 +21,9 @@ source ~/.zsh/themes/powerlevel10k/powerlevel10k.zsh-theme
|
||||||
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
|
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
|
||||||
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
|
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
|
||||||
|
|
||||||
|
GPG_TTY=$(tty)
|
||||||
|
export GPG_TTY
|
||||||
|
|
||||||
# Aliases
|
# Aliases
|
||||||
alias gib='git branch'
|
alias gib='git branch'
|
||||||
alias gis='git status'
|
alias gis='git status'
|
||||||
|
@ -34,15 +37,5 @@ bindkey '^[[1;5D' backward-word # ctrl + left arrow -> Move b
|
||||||
bindkey '^[[1;5C' forward-word # Ctrl + right arrow -> Move forward one word
|
bindkey '^[[1;5C' forward-word # Ctrl + right arrow -> Move forward one word
|
||||||
|
|
||||||
# Color different file types
|
# Color different file types
|
||||||
export LS_COLORS='di=94:ln=36:so=35:pi=33:ex=32:bd=46;34:cd=46;34'
|
export LS_COLORS='di=34:ln=36:so=35:pi=33:ex=32:bd=46;34:cd=46;34'
|
||||||
alias ls='ls --color=auto'
|
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
|
|
||||||
|
|
Loading…
Reference in New Issue