fix(tex): add texlive to the package list
This commit is contained in:
parent
f51075d4e0
commit
bd9ba045ea
2 changed files with 11 additions and 12 deletions
|
@ -37,17 +37,15 @@ Using doom-themes here because Tokyo Night isn't on MELPA.
|
||||||
** Doom Modeline
|
** Doom Modeline
|
||||||
Also may not need doom modeline.
|
Also may not need doom modeline.
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package doom-modeline
|
(use-package doom-modeline
|
||||||
:ensure t
|
:ensure t
|
||||||
:hook (after-init . doom-modeline-mode)
|
:hook (after-init . doom-modeline-mode)
|
||||||
:config
|
:config
|
||||||
(setq doom-modeline-height 27)
|
(setq doom-modeline-height 27)
|
||||||
(custom-set-faces
|
(custom-set-faces
|
||||||
'(mode-line ((t (:family "Recursive Mono Casual Static" :height 1.1))))
|
'(mode-line ((t (:family "Recursive Mono Casual Static" :height 1.1))))
|
||||||
'(mode-line-active ((t (:family "Recursive Mono Casual Static" :height 1.1)))) ; For 29+
|
'(mode-line-active ((t (:family "Recursive Mono Casual Static" :height 1.1)))) ; For 29+
|
||||||
'(mode-line-inactive ((t (:family "Recursive Mono Casual Static" :height 1.1)))))
|
'(mode-line-inactive ((t (:family "Recursive Mono Casual Static" :height 1.0))))))
|
||||||
)
|
|
||||||
|
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
* Vertico, Orderless, and more stuff
|
* Vertico, Orderless, and more stuff
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ emacsWithPackagesFromUsePackage, emacs29-pgtk, python3 }:
|
{ emacsWithPackagesFromUsePackage, emacs29-pgtk, python3, texliveTeTeX }:
|
||||||
emacsWithPackagesFromUsePackage {
|
emacsWithPackagesFromUsePackage {
|
||||||
package = emacs29-pgtk;
|
package = emacs29-pgtk;
|
||||||
config = ./config.org;
|
config = ./config.org;
|
||||||
|
@ -43,6 +43,7 @@ emacsWithPackagesFromUsePackage {
|
||||||
}) ++ [
|
}) ++ [
|
||||||
e.treesit-grammars.with-all-grammars
|
e.treesit-grammars.with-all-grammars
|
||||||
python3
|
python3
|
||||||
|
texliveTeTeX
|
||||||
];
|
];
|
||||||
override = _: prev: { use-package = prev.emacs; };
|
override = _: prev: { use-package = prev.emacs; };
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue