This commit is contained in:
Devon 2023-03-18 19:30:57 -04:00
parent 02e563ede6
commit 6cbf563ceb
3 changed files with 5 additions and 2 deletions

View file

@ -112,7 +112,7 @@ font:
# - (macOS) Menlo
# - (Linux/BSD) monospace
# - (Windows) Consolas
family: SourceCodePro
family: "Hack Nerd Font Mono"
# The `style` can be specified to pick a specific face.
#style: Regular

View file

@ -28,7 +28,7 @@
;; up, `M-x eval-region' to execute elisp code, and 'M-x doom/reload-font' to
;; refresh your font settings. If Emacs still can't find your font, it likely
;; wasn't installed correctly. Font issues are rarely Doom issues!
(setq doom-font (font-spec :family "SourceCodePro" :size 18 :weight 'regular))
(setq doom-font (font-spec :family "Hack Nerd Font Mono" :size 14 :weight 'regular))
;; There are two ways to load a theme. Both assume the theme is installed and
;; available. You can either set `doom-theme' or manually load a theme with the
@ -83,6 +83,8 @@
(add-to-list 'TeX-command-list
'("Tectonic" "tectonic %s.tex" TeX-run-command nil t)))
(setq-hook! 'web-mode-hook +format-with-lsp nil)
;; dap-mode config
(after! dap-mode
;; Golang

View file

@ -9,6 +9,7 @@
;; To install SOME-PACKAGE from MELPA, ELPA or emacsmirror:
(package! just-mode)
(package! protobuf-mode)
(package! prisma-mode :recipe (:host github :repo "pimeys/emacs-prisma-mode" :branch "main"))
;; To install a package directly from a remote git repo, you must specify a
;; `:recipe'. You'll find documentation on what `:recipe' accepts here: