summaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
authorGravatar Uko Kokņevičs2025-03-09 22:05:39 +0200
committerGravatar Uko Kokņevičs2025-03-09 23:01:37 +0200
commit72ef6d5083df247352da202d96bd592a48525bd9 (patch)
treeafc1315e59dd020323c436fbf72cd6b84bbcc08c /init.el
parentAdd faces, incorporate top-level config (diff)
downloademacs.d-72ef6d5083df247352da202d96bd592a48525bd9.tar.gz
emacs.d-72ef6d5083df247352da202d96bd592a48525bd9.tar.xz
emacs.d-72ef6d5083df247352da202d96bd592a48525bd9.zip
Add ffap, incorporate top-level config
Diffstat (limited to 'init.el')
-rw-r--r--init.el8
1 files changed, 5 insertions, 3 deletions
diff --git a/init.el b/init.el
index 9f23153..9fd82d9 100644
--- a/init.el
+++ b/init.el
@@ -101,6 +101,11 @@
101 (auth-sources (list (expand-file-name "authinfo.gpg" local-config-dir) 101 (auth-sources (list (expand-file-name "authinfo.gpg" local-config-dir)
102 "~/.authinfo.gpg"))) 102 "~/.authinfo.gpg")))
103 103
104(use-package ffap
105 :defer t
106 :custom
107 ;; Don't ping random stuff
108 (ffap-machine-p-known 'reject))
104 109
105;; Don't draw stuff in other windows. 110;; Don't draw stuff in other windows.
106(setq-default cursor-in-non-selected-windows nil) 111(setq-default cursor-in-non-selected-windows nil)
@@ -109,9 +114,6 @@
109;; Faster scrolling 114;; Faster scrolling
110(setq fast-but-imprecise-scrolling t) 115(setq fast-but-imprecise-scrolling t)
111 116
112;; Don't ping random stuff
113(setq ffap-machine-p-known 'reject)
114
115;; Inhibit frame resizing 117;; Inhibit frame resizing
116(setq frame-inhibit-implied-resize t) 118(setq frame-inhibit-implied-resize t)
117 119