diff options
Diffstat (limited to 'users/glittershark/emacs.d')
-rw-r--r-- | users/glittershark/emacs.d/config.el | 17 | ||||
-rw-r--r-- | users/glittershark/emacs.d/packages.el | 5 |
2 files changed, 9 insertions, 13 deletions
diff --git a/users/glittershark/emacs.d/config.el b/users/glittershark/emacs.d/config.el index e06f6a5d6db0..29d46e24e0c0 100644 --- a/users/glittershark/emacs.d/config.el +++ b/users/glittershark/emacs.d/config.el @@ -4,14 +4,17 @@ (setq x-super-keysym 'alt x-alt-keysym 'meta) -(setq user-mail-address "griffin@urbint.com" +(setq user-mail-address "root@gws.fyi" user-full-name "Griffin Smith") -(setq doom-font (font-spec :family "Meslo LGSDZ Nerd Font" :size 14) - doom-big-font (font-spec :family "Meslo LGSDZ Nerd Font" :size 24) - doom-big-font-increment 5 - doom-variable-pitch-font (font-spec :family "DejaVu Sans") - doom-unicode-font (font-spec :family "Meslo LGSDZ Nerd Font")) +(let ((font-family (pcase system-type + ('darwin "MesloLGSDZ NF") + ('gnu/linux "Meslo LGSDZ Nerd Font")))) + (setq doom-font (font-spec :family font-family :size 14) + doom-big-font (font-spec :family font-family :size 24) + doom-big-font-increment 5 + doom-variable-pitch-font (font-spec :family "DejaVu Sans") + doom-unicode-font (font-spec :family font-family))) (require 's) @@ -57,8 +60,6 @@ (flycheck-mode)) -(setq exec-path (append exec-path '("/home/grfn/.cargo/bin"))) - (after! cargo (setq cargo-process--custom-path-to-bin "/home/grfn/.cargo/bin/cargo")) diff --git a/users/glittershark/emacs.d/packages.el b/users/glittershark/emacs.d/packages.el index ac6897170918..011d8d41d1cb 100644 --- a/users/glittershark/emacs.d/packages.el +++ b/users/glittershark/emacs.d/packages.el @@ -74,11 +74,6 @@ (package! racer :disable t) (package! cargo) -;; Elixir -(package! flycheck-credo) -(package! flycheck-mix) -(package! flycheck-dialyxir) - ;; Lisp (package! paxedit) |