diff options
author | William Carroll <wpcarro@gmail.com> | 2019-12-22T20·54+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2019-12-24T15·21+0000 |
commit | f739534203439b584a60771f644f869ff55bc156 (patch) | |
tree | be6f5d2fcd6ff6d63f4fbf3f7558b0d8772b698e /configs/shared/.emacs.d/wpc/packages/wpc-shell.el | |
parent | b3342afbfa28da3353195e611bd9d19eb6a6c587 (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/wpc/packages/wpc-shell.el')
-rw-r--r-- | configs/shared/.emacs.d/wpc/packages/wpc-shell.el | 2 |
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 14d0489030da..803a3232ef5b 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 |