Browse Source

[emacs] Add padding around windows back and font bump

Colin Powell 4 years ago
parent
commit
b042c7c166
2 changed files with 10 additions and 10 deletions
  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 ivy-read-action-function #'ivy-hydra-read-action)
 
 
 (setq doom-theme 'doom-challenger-deep
 (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
 ;; 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
 ;; 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.
 (nyan-mode) ;; progress in the form of a rainbow cat.
 (add-hook 'after-init-hook #'global-emojify-mode) ;; emojis?!
 (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.
 for it's retro charm. Nimbus just doesn't look great when I'm tired though.
 #+BEGIN_SRC emacs-lisp
 #+BEGIN_SRC emacs-lisp
 (setq doom-theme 'doom-challenger-deep
 (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
 #+END_SRC
 ** Borders
 ** Borders
 Barring the unfortunate end of X11 development and my eventual transition to
 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.
 border.
 #+BEGIN_SRC emacs-lisp
 #+BEGIN_SRC emacs-lisp
 ;; Applies to current frame
 ;; 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
 ;; 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
 #+END_SRC
 ** Fringe
 ** Fringe
 #+BEGIN_SRC emacs-lisp
 #+BEGIN_SRC emacs-lisp