Bläddra i källkod

[emacs] Add padding around windows back and font bump

Colin Powell 4 år sedan
förälder
incheckning
b042c7c166
2 ändrade filer med 10 tillägg och 10 borttagningar
  1. 5 5
      emacs/.doom.d/config.el
  2. 5 5
      emacs/.doom.d/config.org

+ 5 - 5
emacs/.doom.d/config.el

@@ -4,14 +4,14 @@
 (setq ivy-read-action-function #'ivy-hydra-read-action)
 
 (setq doom-theme 'doom-challenger-deep
-      doom-font (font-spec :family "JetBrains Mono NL" :size 12 :weight 'semi-light)
-      doom-big-font (font-spec :family "JetBrains Mono NL" :size 16)
-      doom-variable-pitch-font (font-spec :family "Overpass" :size 16))
+      doom-font (font-spec :family "JetBrains Mono NL" :size 14 :weight 'semi-light)
+      doom-big-font (font-spec :family "JetBrains Mono NL" :size 17)
+      doom-variable-pitch-font (font-spec :family "Overpass" :size 17))
 
 ;; Applies to current frame
-;(set-frame-parameter nil 'internal-border-width 10) ; applies to the current frame
+(set-frame-parameter nil 'internal-border-width 10) ; applies to the current frame
 ;; If we create new frames (via emacsclient) this will do the trick
-;(add-to-list 'default-frame-alist '(internal-border-width . 10))
+(add-to-list 'default-frame-alist '(internal-border-width . 10))
 
 (nyan-mode) ;; progress in the form of a rainbow cat.
 (add-hook 'after-init-hook #'global-emojify-mode) ;; emojis?!

+ 5 - 5
emacs/.doom.d/config.org

@@ -19,9 +19,9 @@ to Doom One most of the time, but I like the Kaolin themes, as well as Nimbus
 for it's retro charm. Nimbus just doesn't look great when I'm tired though.
 #+BEGIN_SRC emacs-lisp
 (setq doom-theme 'doom-challenger-deep
-      doom-font (font-spec :family "JetBrains Mono NL" :size 12 :weight 'semi-light)
-      doom-big-font (font-spec :family "JetBrains Mono NL" :size 16)
-      doom-variable-pitch-font (font-spec :family "Overpass" :size 16))
+      doom-font (font-spec :family "JetBrains Mono NL" :size 14 :weight 'semi-light)
+      doom-big-font (font-spec :family "JetBrains Mono NL" :size 17)
+      doom-variable-pitch-font (font-spec :family "Overpass" :size 17))
 #+END_SRC
 ** Borders
 Barring the unfortunate end of X11 development and my eventual transition to
@@ -30,9 +30,9 @@ is that when you're trying your best to rice up i3, Emacs needs a padded
 border.
 #+BEGIN_SRC emacs-lisp
 ;; Applies to current frame
-;(set-frame-parameter nil 'internal-border-width 10) ; applies to the current frame
+(set-frame-parameter nil 'internal-border-width 10) ; applies to the current frame
 ;; If we create new frames (via emacsclient) this will do the trick
-;(add-to-list 'default-frame-alist '(internal-border-width . 10))
+(add-to-list 'default-frame-alist '(internal-border-width . 10))
 #+END_SRC
 ** Fringe
 #+BEGIN_SRC emacs-lisp