diff --git a/.emacs.d/include/priime-general.el b/.emacs.d/include/priime-general.el index a4e4d84..3fd0b8a 100644 --- a/.emacs.d/include/priime-general.el +++ b/.emacs.d/include/priime-general.el @@ -8,7 +8,7 @@ ;;; Font (defvar priime--font-config - (cond ((string= (system-name) "framework") '("JetBrains Mono Medium" "Roboto" 10 0.9)) + (cond ((string= (system-name) "minji") '("JetBrains Mono Medium" "Roboto" 10 0.9)) ((eq system-type 'gnu/linux) '("Roboto Mono Medium" "Roboto" 12 0.8)) ((eq system-type 'darwin) '("Menlo" "Verdana" 12 1)) (t '("Roboto Mono" "Roboto" 10 0.8)))) @@ -121,10 +121,10 @@ (ring-bell-function 'ignore) (initial-scratch-message nil) (split-height-threshold - (cond ((string= (system-name) "framework") 100) + (cond ((string= (system-name) "minji") 100) (t 80))) (split-width-threshold - (cond ((string= (system-name) "framework") 180) + (cond ((string= (system-name) "minji") 180) (t 160))) ;; Editing (indent-tabs-mode nil) @@ -195,7 +195,7 @@ (keymap-global-unset "C--") (keymap-global-set "C--" #'priime-font-) - (when (string= (system-name) "framework") + (when (string= (system-name) "minji") (setenv "DISPLAY" ":0") (setenv "WAYLAND_DISPLAY" "wayland-1") (setenv "XDG_SESSION_TYPE" "wayland") diff --git a/.emacs.d/init.el b/.emacs.d/init.el index c963f73..60d5f91 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -34,7 +34,7 @@ (load-library "priime-ai") ;; Legacy -(when (equal (system-name) "framework") +(when (equal (system-name) "minji") (load-library "mu4econfig")) (load-library "latexconfig") (load-library "gpgconfig")