fix yaml-mode, fix doom theme
This commit is contained in:
parent
6941e75add
commit
ec36dd9db6
|
@ -159,7 +159,7 @@ kept-old-versions 5)
|
|||
;; TODO: change this for something better i guess
|
||||
(use-package doom-themes
|
||||
:config
|
||||
(load-theme 'doom-monokai-pro t))
|
||||
(load-theme 'doom-dark+ t))
|
||||
|
||||
;; emacsclient things
|
||||
(setq frame-resize-pixelwise t)
|
||||
|
@ -195,10 +195,12 @@ kept-old-versions 5)
|
|||
#+end_src
|
||||
** Modeline
|
||||
#+begin_src emacs-lisp
|
||||
(use-package nerd-icons
|
||||
(use-package nerd-icons
|
||||
:custom
|
||||
(nerd-icons-font-family "JetBrainsMono NF"))
|
||||
(use-package doom-modeline
|
||||
(use-package doom-modeline
|
||||
:custom
|
||||
(doom-modeline-height 35)
|
||||
:init (doom-modeline-mode 1))
|
||||
#+end_src
|
||||
** Editor Configuration
|
||||
|
@ -901,9 +903,10 @@ this should be useful later
|
|||
#+end_src
|
||||
** Yaml
|
||||
#+begin_src emacs-lisp
|
||||
(use-package nix-mode
|
||||
:hook (nix-mode . eglot-ensure)
|
||||
:mode "\\.nix\\'")
|
||||
(use-package yaml-mode
|
||||
:hook (yaml-mode. eglot-ensure)
|
||||
:mode ("\\.yml\\'"
|
||||
"\\.yaml\\'"))
|
||||
#+end_src
|
||||
** Nix
|
||||
#+begin_src emacs-lisp
|
||||
|
|
Loading…
Reference in a new issue