aboutsummaryrefslogtreecommitdiffstats
path: root/zsh/zshrc.org
blob: 2207ead04d5cfcabbd6b87a580f1a044718b448a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#+TITLE: ZSH

Autoload any ZSH function from =$HOME/.zsh/functions=.

#+BEGIN_SRC sh
  fpath=($HOME/.zsh/functions $fpath)
  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.

#+BEGIN_SRC sh
  alias csi="rlwrap csi"
  alias scsh="rlwrap scsh"
#+END_SRC

Load zplug, a next generation zsh plugin manager.

#+BEGIN_SRC sh
  source /usr/share/zsh/scripts/zplug/init.zsh
#+END_SRC

Add zsh-syntax-highlighting.

#+BEGIN_SRC sh
  zplug "zsh-users/zsh-syntax-highlighting", nice:10
#+END_SRC

Add zsh-autosuggestions.

#+BEGIN_SRC sh
  zplug "zsh-users/zsh-autosuggestions"
#+END_SRC

Add bgnotify from oh-my-zsh to show when long-running commands finish.

#+BEGIN_SRC sh
  zplug "plugins/bgnotify", from:oh-my-zsh
#+END_SRC

Make sure all plugins are installed.

#+BEGIN_SRC sh
  if ! zplug check --verbose; then
      printf "Install? [y/N]: "
      if read -q; then
          echo; zplug install
      fi
  fi
#+END_SRC

Load all plugins.

#+BEGIN_SRC sh
  zplug load --verbose
#+END_SRC

Make some widgets for interacting with the clipboard.

#+BEGIN_SRC sh
  zle -N x-copy-region-as-kill
  zle -N x-kill-region
  zle -N x-yank
#+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

Initialize completion. This triggers loading of
zsh-syntax-highlighting as well.

#+BEGIN_SRC sh
autoload -Uz compinit
compinit
#+END_SRC