mirror of
https://github.com/dcarrillo/dotfiles.git
synced 2025-07-03 22:29:24 +00:00
First commit
This commit is contained in:
64
.zshrc
Normal file
64
.zshrc
Normal file
@ -0,0 +1,64 @@
|
||||
# Source Prezto.
|
||||
if [[ -s "${ZDOTDIR:-$HOME}/.zprezto/init.zsh" ]]; then
|
||||
source "${ZDOTDIR:-$HOME}/.zprezto/init.zsh"
|
||||
fi
|
||||
|
||||
# ZSH customs
|
||||
|
||||
export PATH=$PATH:~/bin
|
||||
setopt clobber
|
||||
zstyle ':completion:*' rehash true
|
||||
|
||||
##### aliases ######
|
||||
|
||||
alias ccat="pygmentize -O style=native -g "
|
||||
alias chromium-socks='chromium --proxy-server=socks://localhost:3000'
|
||||
alias curlmobile='curl -A "Mozilla/5.0 (Linux; U; Android 2.3.6; en-us; Nexus S Build/GRK39F) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1" '
|
||||
alias curlr='curl -o /dev/null -w "\n\nCode: \t%{http_code}\n\nDNS: \t%{time_namelookup}\nConnect:\t%{time_connect}\nStartTransfer:\t%{time_starttransfer} (PreTransfer:%{time_pretransfer})\nTotal: \t%{time_total}\n\n"'
|
||||
alias duh='du -sch .[!.]* *'
|
||||
alias gb="git checkout \$(git branch -vv | fzf +m | awk '{print \$1}')"
|
||||
alias open='xdg-open'
|
||||
alias yayU='yay -Suy --noconfirm'
|
||||
|
||||
##### tilix #####
|
||||
|
||||
if [ $TILIX_ID ] || [ $VTE_VERSION ] ; then
|
||||
source /etc/profile.d/vte.sh
|
||||
fi
|
||||
|
||||
##### editor #####
|
||||
|
||||
export EDITOR='vim'
|
||||
export VISUAL='vim'
|
||||
export PAGER='less'
|
||||
|
||||
##### venvs ######
|
||||
|
||||
export VIRTUALENVWRAPPER_PYTHON=/usr/bin/python
|
||||
export VIRTUALENVWRAPPER_VIRTUALENV=/usr/bin/virtualenv
|
||||
export WORKON_HOME=~/.virtualenvs
|
||||
source /usr/bin/virtualenvwrapper.sh
|
||||
|
||||
##### fzf #####
|
||||
|
||||
source /usr/share/fzf/key-bindings.zsh
|
||||
source /usr/share/fzf/completion.zsh
|
||||
|
||||
fzf-file-widget-hidden () {
|
||||
fd --type f --hidden --follow --exclude .git --exclude .cache | fzf
|
||||
}
|
||||
|
||||
export FZF_DEFAULT_COMMAND="fd --type f --follow"
|
||||
export FZF_DEFAULT_OPTS="-m --reverse --bind 'ctrl-o:execute(xdg-open {})+abort,ctrl-e:execute({})+abort,ctrl-y:execute(echo {} | xclip -selection clipboard -in)+abort'"
|
||||
export FZF_CTRL_T_OPTS="--no-height --preview '[[ \$(file --mime {}) =~ binary ]] && echo {} is a binary file || pygmentize {} 2> /dev/null | head -500'"
|
||||
export FZF_CTRL_T_COMMAND="$FZF_DEFAULT_COMMAND"
|
||||
|
||||
bindkey '^P' fzf-file-widget
|
||||
zle -N fzf-file-widget-hidden
|
||||
bindkey '^H' fzf-file-widget-hidden
|
||||
|
||||
## SSH agent
|
||||
|
||||
if [ -z $SSH_AUTH_SOCK ] && [ -S "${XDG_RUNTIME_DIR}/ssh-agent.socket" ]; then
|
||||
export SSH_AUTH_SOCK="${XDG_RUNTIME_DIR}/ssh-agent.socket"
|
||||
fi
|
Reference in New Issue
Block a user