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