summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authormattkae <mattkae@protonmail.com>2023-01-27 08:41:19 -0500
committermattkae <mattkae@protonmail.com>2023-01-27 08:41:19 -0500
commit8b5874e9acb48f7b3b414b4556762c1835ee4c5d (patch)
tree5e8ecef40befa48117ccbda70537dbc72fe0d947 /lisp
parent71b04518343e93ffea363dbe8996699f580dcfb4 (diff)
Increasing font size, and fixing a bug where all modes were using perfect-margin-mode
Diffstat (limited to 'lisp')
-rw-r--r--lisp/general.el4
-rw-r--r--lisp/text.el8
2 files changed, 9 insertions, 3 deletions
diff --git a/lisp/general.el b/lisp/general.el
index d3f004b..3fdf129 100644
--- a/lisp/general.el
+++ b/lisp/general.el
@@ -43,7 +43,7 @@
;; Default Values
(setq-default indent-tabs-mode nil) ; use spaces only if nil
(setq-default tab-width 2) ; Assuming you want your tabs to be four spaces wide
-(set-face-attribute 'default nil :font "Source Code Pro-10")
+(set-face-attribute 'default nil :font "Source Code Pro-12")
(set-fontset-font t '(?😊 . ?😎) "Segoe UI Emoji")
;;(set-face-attribute 'default nil :height 110 :family "Consolas")
@@ -128,7 +128,7 @@
(set-face-background 'hl-line "unspecified")
(set-face-attribute 'hl-line nil
:box '(:line-width -1
- :color "gray35"
+ :color "gray90"
:style nil))
diff --git a/lisp/text.el b/lisp/text.el
index 835f04d..fd43fbd 100644
--- a/lisp/text.el
+++ b/lisp/text.el
@@ -11,10 +11,16 @@
(display-line-numbers-mode -1)
)
+(defun my-perfect-margin-mode-hook()
+ (when (and (stringp buffer-file-name)
+ (string-match "\\.txt\\'" buffer-file-name))
+ (perfect-margin-mode 1))
+ )
+
(use-package perfect-margin
:ensure t
:config
- (add-hook 'text-mode-hook 'perfect-margin-mode))
+ (add-hook 'text-mode-hook 'my-perfect-margin-mode-hook))
(add-hook 'text-mode-hook 'setup-text-mode)
(require 'ispell)