Add sections to ZSH config
This commit is contained in:
parent
5d5a506f35
commit
bf4fa1fd59
1 changed files with 61 additions and 53 deletions
|
@ -7,6 +7,8 @@ Autoload any ZSH function from =$HOME/.zsh/functions=.
|
|||
autoload -U $HOME/.zsh/functions/*(:t)
|
||||
#+END_SRC
|
||||
|
||||
* Aliases
|
||||
|
||||
Use rlwrap on some less-than-pleasant REPLs that don't have GNU
|
||||
Readline-like features themselves.
|
||||
|
||||
|
@ -15,6 +17,8 @@ Readline-like features themselves.
|
|||
alias scsh="rlwrap scsh"
|
||||
#+END_SRC
|
||||
|
||||
* Plug-ins
|
||||
|
||||
Load zplug, a next generation zsh plugin manager.
|
||||
|
||||
#+BEGIN_SRC sh
|
||||
|
@ -56,6 +60,8 @@ Load all plugins.
|
|||
zplug load --verbose
|
||||
#+END_SRC
|
||||
|
||||
* X Interaction
|
||||
|
||||
Make some widgets for interacting with the clipboard.
|
||||
|
||||
#+BEGIN_SRC sh
|
||||
|
@ -72,6 +78,8 @@ Bind them to keyboard shortcuts.
|
|||
bindkey -e '^Y' x-yank
|
||||
#+END_SRC
|
||||
|
||||
* Completion
|
||||
|
||||
Initialize completion. This triggers loading of
|
||||
zsh-syntax-highlighting as well.
|
||||
|
||||
|
|
Loading…
Reference in a new issue