diff --git a/alacritty/alacritty.yml b/alacritty/alacritty.yml index a5d5cc5..d027807 100644 --- a/alacritty/alacritty.yml +++ b/alacritty/alacritty.yml @@ -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 diff --git a/doom/config.el b/doom/config.el index 2c36752..d8610b8 100644 --- a/doom/config.el +++ b/doom/config.el @@ -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 diff --git a/doom/packages.el b/doom/packages.el index e68a080..52938de 100644 --- a/doom/packages.el +++ b/doom/packages.el @@ -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: