Remove unused themes, addtl small change for jsdoc

This commit is contained in:
Andrew Scott 2022-04-21 21:05:11 -04:00
parent 401377e939
commit 682fcecfb7
Signed by: a
GPG key ID: 3EB62D0BBB8DB381

View file

@ -110,19 +110,15 @@
;; Theme ;; Theme
(setq custom-safe-themes t) (setq custom-safe-themes t)
;(use-package zenburn-theme ;; (use-package atom-one-dark-theme
; :config ;; :config
; (load-theme `zenburn t)) ;; (load-theme 'atom-one-dark t))
(use-package everforest-hard-dark-theme (use-package everforest-hard-dark-theme
:straight (everforest-hard-dark-theme :type git :repo "https://git.sr.ht/~theorytoe/everforest-hard-dark-theme") :straight (everforest-hard-dark-theme :type git :repo "https://git.sr.ht/~theorytoe/everforest-hard-dark-theme")
:config :config
(load-theme 'everforest-hard-dark t)) (load-theme 'everforest-hard-dark t))
;; (use-package base16-theme
;; :config
;; (load-theme 'gruvbox-dark-soft t))
;; Help distinguish work buffers from others like sidebars and terminal ;; Help distinguish work buffers from others like sidebars and terminal
(use-package solaire-mode (use-package solaire-mode
:init :init
@ -380,11 +376,12 @@
("\\.html?\\'" . web-mode))) ("\\.html?\\'" . web-mode)))
(use-package jsdoc (use-package jsdoc
:straight (jsdoc :type git :host github :repo "isamert/jsdoc.el") :straight (jsdoc :type git :host github :repo "isamert/jsdoc.el"))
:config
(use-package tree-sitter) ;; Required dependencies ; required for jsdoc
(use-package tree-sitter-langs) (use-package tree-sitter
:hook ('js-mode-hook 'tree-sitter-mode)) :hook (js-mode . tree-sitter-mode))
(use-package tree-sitter-langs)
;; LaTeX ;; LaTeX