about summary refs log tree commit diff
path: root/configs/shared/.emacs.d
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2019-12-22T20·54+0000
committerWilliam Carroll <wpcarro@gmail.com>2019-12-24T15·21+0000
commitf739534203439b584a60771f644f869ff55bc156 (patch)
treebe6f5d2fcd6ff6d63f4fbf3f7558b0d8772b698e /configs/shared/.emacs.d
parentb3342afbfa28da3353195e611bd9d19eb6a6c587 (diff)
Support fish shell!
After some back-and-forth, I'm trialing fish shell instead of zsh as my default
shell. For now, I'm porting the aliases.zsh into config.fish -- defining them as
abbreviations instead of aliases; this preference may change. See the commentary
in config.fish for more information.

A spent a lot of time in zsh and built much configuration, so supporting fish
may take considerable time. Here's some work that remains:

TODO:
- Port functions.zsh
- Port variables.zsh
- Port zle.zsh
Diffstat (limited to 'configs/shared/.emacs.d')
-rw-r--r--configs/shared/.emacs.d/wpc/packages/wpc-shell.el2
1 files changed, 2 insertions, 0 deletions
diff --git a/configs/shared/.emacs.d/wpc/packages/wpc-shell.el b/configs/shared/.emacs.d/wpc/packages/wpc-shell.el
index 14d0489030..803a3232ef 100644
--- a/configs/shared/.emacs.d/wpc/packages/wpc-shell.el
+++ b/configs/shared/.emacs.d/wpc/packages/wpc-shell.el
@@ -11,5 +11,7 @@
   :init
   (add-hook 'sh-mode-hook #'flymake-shellcheck-load))
 
+(use-package fish-mode)
+
 (provide 'wpc-shell)
 ;;; wpc-shell.el ends here