Fix Doom Doctor Warnings

- Disable support for unused languages
- Add dotfiles to projectile search path
- Add shell settings so bash is used internally and fish is used for
  terminal emulators
This commit is contained in:
Sravan Balaji
2023-11-12 12:45:48 -05:00
parent 3c235db8fb
commit e7b1508a60
3 changed files with 27 additions and 10 deletions

View File

@@ -168,7 +168,7 @@
'(markdown-header-face-2 ((t (:inherit markdown-header-face :height 1.4))))
'(markdown-header-face-3 ((t (:inherit markdown-header-face :height 1.2)))))
(setq projectile-project-search-path '("~/Git/" "~/.config/"))
(setq projectile-project-search-path '("~/Git/" "~/.config/" "~/.dotfiles/"))
(add-hook! 'web-mode-hook 'prettier-js-mode)
@@ -217,3 +217,8 @@
(after! dap-mode
(setq dap-python-debugger 'debugpy))
(setq shell-file-name (executable-find "bash"))
(setq-default vterm-shell (executable-find "fish"))
(setq-default explicit-shell-file-name (executable-find "fish"))