Update Available / Enabled Modules & Rainbow Mode

- Add rainbow mode
- Update `init.el` with latest version from upstream
- Disable `doom-quit`
- Enable `ibuffer`
- Add `hunspell` and `everywhere` flags to `spell`
- Enable `debugger` with `lsp` flag
- Enable `docker`
- Disable `rgb` as it is deprecated
- Enable `java`
- Enable `rust`
- Add `lsp` flag for `haskell`
- Add `lsp` flag for `json`
- Add `dragndrop` and `jupyter` flags to `org`
- Replace `fish-mode` package with `fish` flag for `sh`
- Add `lsp` flag for `yaml`
- Fix projectile project search paths
- Add and configure global Rainbow Mode
This commit is contained in:
Sravan Balaji
2022-07-02 07:51:35 -04:00
parent c8012f6106
commit 5fda254ac2
4 changed files with 275 additions and 254 deletions

View File

@@ -67,10 +67,9 @@
(setq org-superstar-headline-bullets-list '("" "" "" "" "" "" ""))
(setq org-superstar-item-bullet-alist '((?+ . ?➤) (?- . ?✦))) ; changes +/- symbols in item lists
(add-hook! org-mode (org-superstar-mode))
(setq projectile-project-search-path '("~/Projects/" "~/.config/"))
(setq projectile-project-search-path '("~/Projects/Personal/" "~/Projects/System/" "~/.config/"))
(add-hook! 'web-mode-hook 'prettier-js-mode)
@@ -81,3 +80,7 @@
(global-auto-revert-mode 1)
(setq global-auto-revert-non-file-buffers t)
(define-globalized-minor-mode global-rainbow-mode rainbow-mode
(lambda () (rainbow-mode 1)))
(global-rainbow-mode 1)