diff options
| author | bard <[email protected]> | 2024-04-01 18:08:52 -0400 |
|---|---|---|
| committer | bard <[email protected]> | 2024-04-01 18:08:52 -0400 |
| commit | 8432885db959edabf7b25c74f740ba826f6b2ea3 (patch) | |
| tree | a6b7ffed0b204214ef3d4d7fb05cecbc058eb79b | |
| parent | 44f38e07e7b53acb7479e09cc87b29fe574cefe2 (diff) | |
fix C-z keybind
| -rw-r--r-- | bard-emacs-modules/bard-emacs-eshell.el | 1 | ||||
| -rw-r--r-- | init.el | 6 |
2 files changed, 6 insertions, 1 deletions
diff --git a/bard-emacs-modules/bard-emacs-eshell.el b/bard-emacs-modules/bard-emacs-eshell.el index 3c2379a..61d23e8 100644 --- a/bard-emacs-modules/bard-emacs-eshell.el +++ b/bard-emacs-modules/bard-emacs-eshell.el @@ -3,7 +3,6 @@ :config (setq eshell-banner-message "Time for another recreational programming session.\n\n")) -(global-set-key (kbd "C-z") nil) (define-key global-map (kbd "C-z e") #'eshell-switcher) (with-eval-after-load "esh-mode" (define-key eshell-mode-map (kbd "C-c f") #'bard/eshell-find-file-at-point) @@ -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)) |
