summary refs log tree commit diff
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2024-04-02 20:18:53 -0700
committerFranck Cuny <franck@fcuny.net>2024-04-02 20:18:53 -0700
commitb1646127e9f33e706185ebe34dfcfc7f3670ddc4 (patch)
treeaf8d68cc09d1038260819250cde5b45fba5856a7
parentmore things (diff)
downloademacs.d-b1646127e9f33e706185ebe34dfcfc7f3670ddc4.tar.gz
move some display stuff
-rw-r--r--init.el14
1 files changed, 8 insertions, 6 deletions
diff --git a/init.el b/init.el
index 2b78efe..cd365c0 100644
--- a/init.el
+++ b/init.el
@@ -160,6 +160,14 @@
      (concat "https://sourcegraph.rbx.com/search?q=context:global+lang:" language
              "+" code))))
 
+;;; display mode
+;; paren.el
+(show-paren-mode 1)
+(setq show-paren-delay 0)
+(setq show-paren-highlight-openparen t)
+(setq show-paren-when-point-inside-paren t)
+(setq show-paren-when-point-in-periphery t)
+
 (use-package abbrev
   :diminish
   :hook
@@ -446,12 +454,6 @@
     (window-divider-default-bottom-width 1)
     (window-divider-default-places 'bottom-only)
 
-    ;; paren.el
-    (show-paren-delay 0)
-    (show-paren-highlight-openparen t)
-    (show-paren-when-point-inside-paren t)
-    (show-paren-when-point-in-periphery t)
-
     :config
     (add-hook 'after-save-hook
               #'executable-make-buffer-file-executable-if-script-p))