mirror of
https://codeberg.org/andyscott/dotfiles.git
synced 2024-11-12 15:20:50 -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
|
;; 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
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue