From bf4fa1fd5953c97ea93311c68673bc7ecee1020c Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Sat, 29 Oct 2016 09:55:50 +0200 Subject: Add sections to ZSH config --- zsh/zshrc.org | 114 +++++++++++++++++++++++++++++++--------------------------- 1 file changed, 61 insertions(+), 53 deletions(-) (limited to 'zsh/zshrc.org') diff --git a/zsh/zshrc.org b/zsh/zshrc.org index 2207ead..919de03 100644 --- a/zsh/zshrc.org +++ b/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 -- cgit v1.2.3-54-g00ecf