From 53db9402916822e673b3b49fcba26537e2416b59 Mon Sep 17 00:00:00 2001 From: JSDurand Date: Wed, 20 Jan 2021 11:08:00 +0800 Subject: More QoL changes * basic.el (auto-fill-function): Hide auto-fill-function from the mode line. (auto-revert-mode): Hide auto-revert-mode from the mode line. * common.el (durand-hide-minor-mode): Use a simple macro to facilitate hiding. * elisp.el (eldoc-mode): Use a macro to hide instead. * eww-conf.el (eww-bookmarks-directory): Start Configuring EWW. * init.el ("durand-simple"): My simple utilities. ("search-conf.el"): Configuring searching. * search-conf.el (search-whitespace-regexp): White space as wild cards (isearch-lax-whitespace): as above (isearch-lazy-count): Count the matches (isearch-allow-scroll): Scrolling while searching (durand-search-replace-symbol): For quick refactoring * text-conf.el (assq): Hide using the macro instead. --- init.el | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'init.el') diff --git a/init.el b/init.el index 1b4c8e5..98d0b88 100644 --- a/init.el +++ b/init.el @@ -171,6 +171,10 @@ If FUNCTION-NAME is already a valid function, this won't do anything." (define-key global-map (vector 3 103) 'magit) +;;; eww + +(load-config "eww-conf.el") + ;;; Viewing things (load-config "view-conf.el") @@ -183,6 +187,15 @@ If FUNCTION-NAME is already a valid function, this won't do anything." (define-key global-map (vector ?\s-q) #'window-toggle-side-windows) +;;; My simple utilities + +(use-package "durand-simple" 'durand-simple + (define-key global-map (vector ?\C-\M-\s) #'durand-simple-mark-dwim)) + +;;; Searches + +(load-config "search-conf.el") + ;;; server ;; (cond -- cgit v1.2.3-18-g5258