Compare commits
No commits in common. "c67354ca58f7179660be30be817fae5d36cd7980" and "ad29d0c88782d04511014174d986fccae1480ff6" have entirely different histories.
c67354ca58
...
ad29d0c887
2 changed files with 5 additions and 19 deletions
|
@ -199,13 +199,13 @@ bar {
|
|||
colors {
|
||||
statusline #000000
|
||||
background #ffffff
|
||||
focused_workspace #cf1bff #cf1bff #ffffff
|
||||
focused_workspace #000000 #000000 #ffffff
|
||||
active_workspace #eca6ff #eca6ff #ffffff
|
||||
inactive_workspace #dfdfdf #dfdfdf #000000
|
||||
}
|
||||
}
|
||||
|
||||
client.focused #cf1bff #cf1bff #ffffff
|
||||
client.focused #000000 #000000 #ffffff
|
||||
client.focused_inactive #eca6ff #eca6ff #000000
|
||||
client.unfocused #dfdfdf #dfdfdf #000000
|
||||
|
||||
|
|
20
.zshrc
20
.zshrc
|
@ -9,8 +9,8 @@ setopt interactive_comments
|
|||
|
||||
setopt autocd extendedglob notify
|
||||
bindkey -e
|
||||
bindkey "^[f" forward-word
|
||||
bindkey "^[b" backward-word
|
||||
bindkey "^[[1;5C" forward-word
|
||||
bindkey "^[[1;5D" backward-word
|
||||
|
||||
zstyle ':completion:*' list-dirs-first yes
|
||||
zstyle ':completion:*' matcher-list '' 'm:{a-zA-Z}={A-Za-z}' 'r:|[._-]=* r:|=*' 'l:|=* r:|=*'
|
||||
|
@ -18,8 +18,6 @@ zstyle ':completion:*' matcher-list '' 'm:{a-zA-Z}={A-Za-z}' 'r:|[._-]=* r:|=*'
|
|||
zstyle :compinstall filename ~/.zshrc
|
||||
autoload -Uz compinit && compinit
|
||||
|
||||
# Advertencia: no es seguro entrar a carpetas desconfiables con esto...
|
||||
# https://blog.sonarsource.com/securing-developer-tools-git-integrations
|
||||
autoload -Uz vcs_info
|
||||
zstyle ':vcs_info:*' actionformats \
|
||||
'%F{4}[%F{2}%b%F{3}|%F{1}%a%F{4}]%f '
|
||||
|
@ -34,25 +32,13 @@ PS1='%S%F{5} %3~ ${vcs_info_msg_0_}%f%#%s '
|
|||
alias ls='ls --color=always'
|
||||
alias grep='grep --color=always'
|
||||
|
||||
alias gitdf='git --git-dir=$HOME/.config/dotfiles/ --work-tree=$HOME'
|
||||
alias ssh='TERM=xterm-256color ssh'
|
||||
alias e="$EDITOR"
|
||||
alias r="trash -r"
|
||||
|
||||
alias a='nohup nemo "$(pwd)" >/dev/null &'
|
||||
|
||||
alias gcp='git commit -p'
|
||||
alias gc='git commit'
|
||||
alias gs='git status'
|
||||
alias ga='git add'
|
||||
alias gt='git tag'
|
||||
alias gp='git push'
|
||||
alias gpo='git push origin' # Para tags: git push origin 1.0.2 / gpo 1.0.2
|
||||
|
||||
alias gitdf='git --git-dir=$HOME/.config/dotfiles/ --work-tree=$HOME'
|
||||
alias gdcp='gitdf commit -p'
|
||||
alias gds='gitdf status'
|
||||
alias gdp='gitdf push'
|
||||
|
||||
source /usr/share/fzf/key-bindings.zsh
|
||||
source ~/.config/zsh/bg_notify.zsh
|
||||
! "$REMOTE" && source ~/.config/zsh/osc_7.zsh
|
||||
|
|
Loading…
Reference in a new issue