update zshrc config
This commit is contained in:
parent
0c6cb90822
commit
d2c79410f6
1 changed files with 33 additions and 9 deletions
42
.zshrc
42
.zshrc
|
|
@ -77,7 +77,11 @@ ZSH_THEME="powerlevel10k/powerlevel10k"
|
|||
# Custom plugins may be added to $ZSH_CUSTOM/plugins/
|
||||
# Example format: plugins=(rails git textmate ruby lighthouse)
|
||||
# Add wisely, as too many plugins slow down shell startup.
|
||||
plugins=(git vi-mode)
|
||||
plugins=(
|
||||
git
|
||||
zsh-autosuggestions
|
||||
zsh-fzf-history-search
|
||||
)
|
||||
|
||||
source $ZSH/oh-my-zsh.sh
|
||||
|
||||
|
|
@ -104,14 +108,34 @@ source $ZSH/oh-my-zsh.sh
|
|||
# For a full list of active aliases, run `alias`.
|
||||
#
|
||||
# Example aliases
|
||||
alias vpsz="ssh root@185.241.55.216"
|
||||
alias prnv="poetry run nvim"
|
||||
alias remote_astra="ssh t0xa@172.31.142.161"
|
||||
alias remote_sup="ssh t0xa@172.31.142.124"
|
||||
alias air='~/go/bin/air'
|
||||
alias nvimzsh="nvim ~/.zshrc"
|
||||
# alias ls="ls -l"
|
||||
# alias ohmyzsh="mate ~/.oh-my-zsh"
|
||||
|
||||
alias ssh134="ssh astra@172.16.122.134"
|
||||
alias ssh21="ssh astra@10.10.14.21"
|
||||
alias ssh129="ssh astra@10.11.12.129"
|
||||
alias vpsz="ssh root@185.241.55.216 -p 2244"
|
||||
alias remote_sup="ssh t0xa@172.31.142.197"
|
||||
alias remote_astra="ssh t0xa@172.31.142.191"
|
||||
alias remote_debian="ssh t0xa@172.31.142.30 -A"
|
||||
alias vpnz="sudo ss-local -v -c /etc/shadowsocks-libev/config.json"
|
||||
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
|
||||
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
|
||||
export PATH=$PATH:/Users/antonsalimov/go/bin
|
||||
export OBSIDIAN_NOTES_PATH=/Users/antonsalimov/Projects/Obsidian/t0xa_vault/
|
||||
export PATH=$PATH:/usr/local/go/bin
|
||||
export PATH=$PATH:/opt/Telegram
|
||||
export PATH=$PATH:/opt/Compass\ On-premise/compassonpremise
|
||||
export PATH=$PATH:/home/pro100ton/Apps/Postman/app
|
||||
export PATH=$PATH:/home/pro100ton/Apps/
|
||||
export PATH=$PATH:/home/pro100ton/.nimble/bin
|
||||
# Add LATEX to path
|
||||
export PATH=$PATH:/usr/local/texlive/2025/bin/x86_64-linux
|
||||
# Additional LATEX paths
|
||||
export MANPATH=$PATH:/usr/local/texlive/2025/texmf-dist/doc/man
|
||||
export INFOPATH=$PATH:/usr/local/texlive/2025/texmf-dist/doc/info
|
||||
|
||||
export LC_CTYPE=en_US.UTF-8
|
||||
export LC_ALL=en_US.UTF-8
|
||||
export OBSIDIAN_NOTES_PATH="/home/pro100ton/Documents/t0xa_vault"
|
||||
|
||||
bindkey -v
|
||||
bindkey '^R' fzf_history_search
|
||||
|
|
|
|||
Loading…
Reference in a new issue