aboutsummaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
authorbard <[email protected]>2024-04-01 18:08:52 -0400
committerbard <[email protected]>2024-04-01 18:08:52 -0400
commit8432885db959edabf7b25c74f740ba826f6b2ea3 (patch)
treea6b7ffed0b204214ef3d4d7fb05cecbc058eb79b /init.el
parent44f38e07e7b53acb7479e09cc87b29fe574cefe2 (diff)
fix C-z keybind
Diffstat (limited to 'init.el')
-rw-r--r--init.el6
1 files changed, 6 insertions, 0 deletions
diff --git a/init.el b/init.el
index 43dca89..48122cd 100644
--- a/init.el
+++ b/init.el
@@ -25,6 +25,12 @@
;;; Code:
+;; fix keymap
+(global-set-key (kbd "C-z") nil)
+
+;; pixel scrolling
+(pixel-scroll-precision-mode 1)
+
;; Add the directories to the load path
(add-to-list 'load-path "~/.emacs.d/elisp/")
(add-to-list 'load-path (expand-file-name "bard-elisp" user-emacs-directory))