1
0
Fork 0

fix(emacs): set default emacs shell to fish

Signed-off-by: Lucas Sta Maria <lucas@priime.dev>
This commit is contained in:
Lucas Sta Maria 2024-05-04 17:08:36 -07:00
parent 49dcb6ca2c
commit bda35981fc
No known key found for this signature in database
GPG key ID: F07FB16A826E3B47

View file

@ -166,6 +166,10 @@
(setq compilation-exit-message-function 'compilation-exit-autoclose) (setq compilation-exit-message-function 'compilation-exit-autoclose)
;; shell ;; shell
(setq vterm-shell
(if (file-exists-p "/usr/bin/fish")
"/usr/bin/fish"
shell-file-name))
(keymap-global-set "C-c v" #'vterm) (keymap-global-set "C-c v" #'vterm)
(provide 'general) (provide 'general)