diff options
| -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)) |
