zsh (.zshrc)
Meu incrível shell zsh
Categoria: Console
Software: zsh
[ Hits: 7.369 ]
Por: Vinícius dos Santos Oliveira
A configuração será constantemente atualizada no meu repositório Git < https://code.google.com/p/vinipsmaker/source/browse/config/.zshrc > e tem até uma explicação para as partes mais cabulosas no meu blog < https://vinipsmaker.wordpress.com/2014/02/23/my-zsh-config/ >.
Preview para o meu shell (que não mostra coisas legais como o prompt transitório do lado direito e informações sobre quando o último comando não foi concluído com sucesso): https://asciinema.org/a/7821
# The following lines were added by compinstall
zstyle ':completion:*' completer _expand _complete _ignored
zstyle ':completion:*' ignore-parents parent pwd ..
zstyle ':completion:*' insert-unambiguous true
zstyle ':completion:*' list-colors ''
zstyle ':completion:*' list-suffixes true
zstyle ':completion:*' menu select=long
zstyle ':completion:*' original false
zstyle ':completion:*' select-prompt %SScrolling active: current selection at %l%s
zstyle ':completion:*' squeeze-slashes true
zstyle :compinstall filename '/home/vinipsmaker/.zshrc'
autoload -Uz compinit
compinit
# End of lines added by compinstall
# Lines configured by zsh-newuser-install
HISTFILE=~/.histfile
HISTSIZE=4096
SAVEHIST=4096
setopt appendhistory extendedglob
unsetopt notify
bindkey -e
# End of lines configured by zsh-newuser-install
# Extra plugins {{{
## Smarter help and a bash-like help function
unalias run-help
autoload run-help
alias help='run-help'
## autocompletion for vlc based on --help
compdef _gnu_generic vlc
## Magic quoting in URLs to save me from typing quoted strings
autoload -U url-quote-magic
zle -N self-insert url-quote-magic
## Fish shell like syntax highlighting
function () {
local _syntax_highlighting_file=/usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
if [ -f $_syntax_highlighting_file ]; then
. $_syntax_highlighting_file
fi
}
# }}}
# zshoptions {{{
setopt TRANSIENT_RPROMPT
setopt print_exit_value
setopt COMPLETE_IN_WORD
setopt INTERACTIVE_COMMENTS
## History control
setopt HIST_IGNORE_DUPS
setopt HIST_IGNORE_SPACE
setopt HIST_NO_STORE
## "Wording behaviour"
## see select-word-style to learn more
## Remove / and - from WORDCHARS
## ${WORDCHARS//[_-]} would remove _ and -
WORDCHARS="${WORDCHARS//[-\/]}"
## See REDIRECTIONS WITH NO COMMAND on zshmisc
NULLCMD=':'
# }}}
# Zsh normally leaves the stty intr setting alone and handles the INT
# signal. Which means that when you type ^C, you're sending a signal
# to the tty process group, not a normal keystroke to the shell input.
# This has some helpful side-effects for process management, but means
# the the line editor exits.
#
# In order to behave the way you want, you have to trap the INT signal
# and print the ^C yourself: {{{
## will be redefined later
updatemyprompt() { }
local _trapped='no'
TRAPINT() {
print -n -u2 '^C'
_trapped='yes'
updatemyprompt
return $((128+$1))
}
# }}}
# Key bindings {{{
## Native keys
### Tab
bindkey "^I" expand-or-complete-prefix
### Alt + F
bindkey "^[f" emacs-forward-word
### Ctrl + U
bindkey "^U" backward-kill-line
## Extended keys
function () {
typeset -A key
if (( ${+terminfo[smkx]} )) && (( ${+terminfo[rmkx]} )); then
### If application mode/terminfo is available
function zle-line-init () {
echoti smkx
}
function zle-line-finish () {
echoti rmkx
}
zle -N zle-line-init
zle -N zle-line-finish
### List of desired keys
key[Home]=${terminfo[khome]}
key[End]=${terminfo[kend]}
key[Delete]=${terminfo[kdch1]}
key[PageUp]=${terminfo[kpp]}
key[PageDown]=${terminfo[knp]}
else
### Fallback to manually managed user-driven database
printf 'Failed to setup keys using terminfo (application mode unsuported).\n'
printf 'Jumping to zkbd fallback.\n'
autoload zkbd
function zkbd_file() {
[[ -f ~/.zkbd/${TERM}-${VENDOR}-${OSTYPE} ]] && printf '%s' ~/".zkbd/${TERM}-${VENDOR}-${OSTYPE}" && return 0
[[ -f ~/.zkbd/${TERM}-${DISPLAY} ]] && printf '%s' ~/".zkbd/${TERM}-${DISPLAY}" && return 0
return 1
}
[[ ! -d ~/.zkbd ]] && mkdir ~/.zkbd
keyfile=$(zkbd_file)
ret=$?
if [[ ${ret} -ne 0 ]]; then
zkbd
keyfile=$(zkbd_file)
ret=$?
fi
if [[ ${ret} -eq 0 ]] ; then
source "${keyfile}"
else
printf 'Failed to setup keys using zkbd.\n'
fi
unfunction zkbd_file; unset keyfile ret
fi
### Setup keys accordingly
[[ -n ${key[Home]} ]] && bindkey "${key[Home]}" beginning-of-line
[[ -n ${key[End]} ]] && bindkey "${key[End]}" end-of-line
[[ -n ${key[Delete]} ]] && bindkey "${key[Delete]}" delete-char
[[ -n ${key[PageUp]} ]] && bindkey "${key[PageUp]}" beginning-of-buffer-or-history
[[ -n ${key[PageDown]} ]] && bindkey "${key[PageDown]}" end-of-buffer-or-history
}
# }}}
# Aliases {{{
alias ls='ls --color=auto'
alias cgrep='grep --color=always -I'
alias grep='grep --color=auto -I'
alias less='less -Ri'
alias youtube='[*****] -f 43 -l'
alias mplayer='mplayer -ao pulse --quvi-format=default'
alias aplayer='mplayer -vo none'
if [ $TERMINOLOGY ]; then
alias ls2='tyls'
alias cat2='tycat'
fi
# }}}
# Functions {{{
man(){
env man $* || (command -v $1 >/dev/null 2>&1 && $1 --help | less)
}
# }}}
# Prompt {{{
autoload -U colors && colors
setopt prompt_subst
fortune -c
autoload -Uz vcs_info
zstyle ':vcs_info:*' check-for-changes true
zstyle ':vcs_info:*' enable git
## %n: username
## %m: hostname
## %~: working dir
## %?: last command's exit status
updatemyprompt() {
# vcs_info_msg_0_ var {{{
vcs_info
# }}}
# Last command status {{{
local _PROMPT_CHAR=""
if [ x"$_trapped" = x"yes" ]; then
_PROMPT_CHAR='$'
else
_PROMPT_CHAR="%(?::%{$bg[red]%})\$%{$reset_color%}"
fi
# }}}
PROMPT='%{$fg[cyan]%}%n'
if [[ ! -z $SSH_TTY ]]; then
PROMPT="${PROMPT}"' @ %m'
fi
PROMPT="${PROMPT}"' %{$fg[magenta]%}%~ %{$reset_color%}'"${_PROMPT_CHAR}"' '
}
precmd() { updatemyprompt }
preexec() { _trapped='no' }
RPROMPT='%{$fg[yellow]%}${vcs_info_msg_0_}%{$reset_color%}'
# }}}
Compartilhando a tela do Computador no Celular via Deskreen
Como Configurar um Túnel SSH Reverso para Acessar Sua Máquina Local a Partir de uma Máquina Remota
Configuração para desligamento automatizado de Computadores em um Ambiente Comercial
Como renomear arquivos de letras maiúsculas para minúsculas
Imprimindo no formato livreto no Linux
Vim - incrementando números em substituição
Efeito "livro" em arquivos PDF
Como resolver o erro no CUPS: Unable to get list of printer drivers
Não to conseguindo resolver este problemas ao instalar o playonelinux (1)
Excluir banco de dados no xampp (1)
[Python] Automação de scan de vulnerabilidades
[Python] Script para analise de superficie de ataque
[Shell Script] Novo script para redimensionar, rotacionar, converter e espelhar arquivos de imagem
[Shell Script] Iniciador de DOOM (DSDA-DOOM, Doom Retro ou Woof!)
[Shell Script] Script para adicionar bordas às imagens de uma pasta