aboutsummaryrefslogtreecommitdiffstats
path: root/zsh/zshrc.org
blob: 54e9730446352531e1d830c88b1643e009244673 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#+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