From 4a6a1e36299ecd6c3dd567ec0039783a53b543ee Mon Sep 17 00:00:00 2001 From: Tom Willemse Date: Wed, 19 Oct 2016 22:52:25 +0200 Subject: [PATCH] Move zsh config to org --- zsh/.dir-locals.el | 2 ++ zsh/.gitignore | 3 +++ zsh/.zshrc | 0 zsh/zshrc.org | 16 ++++++++++++++++ 4 files changed, 21 insertions(+) create mode 100644 zsh/.dir-locals.el delete mode 100644 zsh/.zshrc create mode 100644 zsh/zshrc.org diff --git a/zsh/.dir-locals.el b/zsh/.dir-locals.el new file mode 100644 index 0000000..b294144 --- /dev/null +++ b/zsh/.dir-locals.el @@ -0,0 +1,2 @@ +((sh-mode + (sh-shell . "zsh"))) diff --git a/zsh/.gitignore b/zsh/.gitignore index f940b94..2e8258c 100644 --- a/zsh/.gitignore +++ b/zsh/.gitignore @@ -1 +1,4 @@ +*.zwc + .profile +.zshrc diff --git a/zsh/.zshrc b/zsh/.zshrc deleted file mode 100644 index e69de29..0000000 diff --git a/zsh/zshrc.org b/zsh/zshrc.org new file mode 100644 index 0000000..54e9730 --- /dev/null +++ b/zsh/zshrc.org @@ -0,0 +1,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