update kitty

This commit is contained in:
Alexander NeonXP Kiryukhin 2024-07-17 02:21:13 +03:00
parent 9503b74feb
commit a1f77fb47c
No known key found for this signature in database
GPG key ID: 35E33E1AB7776B39
3 changed files with 21 additions and 14 deletions

View file

@ -25,6 +25,9 @@ antigen apply
# Exports
export PATH=$HOME/.local/bin:/usr/local/bin:$HOME/go/bin:$PATH
# export GOROOT=$HOME/work/go
export GOPATH=$HOME/go
export GOPROXY=https://proxy.neonxp.ru
export EDITOR="micro"
#export DOCKER_HOST=unix://$XDG_RUNTIME_DIR/docker.sock
@ -37,6 +40,12 @@ alias gitpush='git add . && git commit --amend --no-edit && git push -f'
alias k='kubectl'
alias yu="ssh-add -e /usr/lib/x86_64-linux-gnu/libykcs11.so; ssh-add -s /usr/lib/x86_64-linux-gnu/libykcs11.so"
alias m='micro'
alias cp="cp -i" # confirm before overwriting something
alias df='df -h' # human-readable sizes
alias free='free -m' # show sizes in MB
alias np='nano -w PKGBUILD'
alias more=less
[[ ! -f `which exa` ]] || alias ls="exa" && alias ll="exa -l"