Add sections to ZSH config
This commit is contained in:
parent
5d5a506f35
commit
bf4fa1fd59
1 changed files with 61 additions and 53 deletions
|
@ -7,75 +7,83 @@ Autoload any ZSH function from =$HOME/.zsh/functions=.
|
||||||
autoload -U $HOME/.zsh/functions/*(:t)
|
autoload -U $HOME/.zsh/functions/*(:t)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
Use rlwrap on some less-than-pleasant REPLs that don't have GNU
|
* Aliases
|
||||||
Readline-like features themselves.
|
|
||||||
|
|
||||||
#+BEGIN_SRC sh
|
Use rlwrap on some less-than-pleasant REPLs that don't have GNU
|
||||||
|
Readline-like features themselves.
|
||||||
|
|
||||||
|
#+BEGIN_SRC sh
|
||||||
alias csi="rlwrap csi"
|
alias csi="rlwrap csi"
|
||||||
alias scsh="rlwrap scsh"
|
alias scsh="rlwrap scsh"
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
Load zplug, a next generation zsh plugin manager.
|
* Plug-ins
|
||||||
|
|
||||||
#+BEGIN_SRC sh
|
Load zplug, a next generation zsh plugin manager.
|
||||||
|
|
||||||
|
#+BEGIN_SRC sh
|
||||||
source /usr/share/zsh/scripts/zplug/init.zsh
|
source /usr/share/zsh/scripts/zplug/init.zsh
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
Add zsh-syntax-highlighting.
|
Add zsh-syntax-highlighting.
|
||||||
|
|
||||||
#+BEGIN_SRC sh
|
#+BEGIN_SRC sh
|
||||||
zplug "zsh-users/zsh-syntax-highlighting", nice:10
|
zplug "zsh-users/zsh-syntax-highlighting", nice:10
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
Add zsh-autosuggestions.
|
Add zsh-autosuggestions.
|
||||||
|
|
||||||
#+BEGIN_SRC sh
|
#+BEGIN_SRC sh
|
||||||
zplug "zsh-users/zsh-autosuggestions"
|
zplug "zsh-users/zsh-autosuggestions"
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
Add bgnotify from oh-my-zsh to show when long-running commands finish.
|
Add bgnotify from oh-my-zsh to show when long-running commands finish.
|
||||||
|
|
||||||
#+BEGIN_SRC sh
|
#+BEGIN_SRC sh
|
||||||
zplug "plugins/bgnotify", from:oh-my-zsh
|
zplug "plugins/bgnotify", from:oh-my-zsh
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
Make sure all plugins are installed.
|
Make sure all plugins are installed.
|
||||||
|
|
||||||
#+BEGIN_SRC sh
|
#+BEGIN_SRC sh
|
||||||
if ! zplug check --verbose; then
|
if ! zplug check --verbose; then
|
||||||
printf "Install? [y/N]: "
|
printf "Install? [y/N]: "
|
||||||
if read -q; then
|
if read -q; then
|
||||||
echo; zplug install
|
echo; zplug install
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
Load all plugins.
|
Load all plugins.
|
||||||
|
|
||||||
#+BEGIN_SRC sh
|
#+BEGIN_SRC sh
|
||||||
zplug load --verbose
|
zplug load --verbose
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
Make some widgets for interacting with the clipboard.
|
* X Interaction
|
||||||
|
|
||||||
#+BEGIN_SRC sh
|
Make some widgets for interacting with the clipboard.
|
||||||
|
|
||||||
|
#+BEGIN_SRC sh
|
||||||
zle -N x-copy-region-as-kill
|
zle -N x-copy-region-as-kill
|
||||||
zle -N x-kill-region
|
zle -N x-kill-region
|
||||||
zle -N x-yank
|
zle -N x-yank
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
Bind them to keyboard shortcuts.
|
Bind them to keyboard shortcuts.
|
||||||
|
|
||||||
#+BEGIN_SRC sh
|
#+BEGIN_SRC sh
|
||||||
bindkey -e '^[w' x-copy-region-as-kill
|
bindkey -e '^[w' x-copy-region-as-kill
|
||||||
bindkey -e '^W' x-kill-region
|
bindkey -e '^W' x-kill-region
|
||||||
bindkey -e '^Y' x-yank
|
bindkey -e '^Y' x-yank
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
Initialize completion. This triggers loading of
|
* Completion
|
||||||
zsh-syntax-highlighting as well.
|
|
||||||
|
|
||||||
#+BEGIN_SRC sh
|
Initialize completion. This triggers loading of
|
||||||
autoload -Uz compinit
|
zsh-syntax-highlighting as well.
|
||||||
compinit
|
|
||||||
#+END_SRC
|
#+BEGIN_SRC sh
|
||||||
|
autoload -Uz compinit
|
||||||
|
compinit
|
||||||
|
#+END_SRC
|
||||||
|
|
Loading…
Reference in a new issue