diff options
Diffstat (limited to 'init.el')
-rw-r--r-- | init.el | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -259,7 +259,8 @@ no effect." ;;; Eshell (load-after-function eshell "eshell-conf.el" "Load Eshell and launch it." nil - (eshell)) + (eshell) + (eshell-start-track-command-time)) ;;; tab configurations @@ -321,6 +322,7 @@ no effect." (prefix-numeric-value current-prefix-arg))))) (define-key global-map (vector 3 ?v ?w) #'eww) +(define-key global-map (vector ?\s-w) #'eww) ;;; Viewing things @@ -329,6 +331,7 @@ no effect." ;;; flymake (prepare-in-hook-once prepare-flymake prog-mode-hook "flymake-conf.el") +(define-key global-map (vector ?\s-m) #'prepare-flymake) ;;; Don't let s-q quit as I oft press that by accident. |