mirror of
https://codeberg.org/andyscott/dotfiles.git
synced 2024-11-09 14:00:47 -05:00
Remove unused themes, addtl small change for jsdoc
This commit is contained in:
parent
401377e939
commit
682fcecfb7
1 changed files with 9 additions and 12 deletions
|
@ -110,19 +110,15 @@
|
|||
;; Theme
|
||||
(setq custom-safe-themes t)
|
||||
|
||||
;(use-package zenburn-theme
|
||||
; :config
|
||||
; (load-theme `zenburn t))
|
||||
;; (use-package atom-one-dark-theme
|
||||
;; :config
|
||||
;; (load-theme 'atom-one-dark t))
|
||||
|
||||
(use-package everforest-hard-dark-theme
|
||||
:straight (everforest-hard-dark-theme :type git :repo "https://git.sr.ht/~theorytoe/everforest-hard-dark-theme")
|
||||
:config
|
||||
(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
|
||||
(use-package solaire-mode
|
||||
:init
|
||||
|
@ -380,11 +376,12 @@
|
|||
("\\.html?\\'" . web-mode)))
|
||||
|
||||
(use-package jsdoc
|
||||
:straight (jsdoc :type git :host github :repo "isamert/jsdoc.el")
|
||||
:config
|
||||
(use-package tree-sitter) ;; Required dependencies
|
||||
(use-package tree-sitter-langs)
|
||||
:hook ('js-mode-hook 'tree-sitter-mode))
|
||||
:straight (jsdoc :type git :host github :repo "isamert/jsdoc.el"))
|
||||
|
||||
; required for jsdoc
|
||||
(use-package tree-sitter
|
||||
:hook (js-mode . tree-sitter-mode))
|
||||
(use-package tree-sitter-langs)
|
||||
|
||||
;; LaTeX
|
||||
|
||||
|
|
Loading…
Reference in a new issue