diff options
author | JSDurand <mmemmew@gmail.com> | 2021-01-20 11:08:00 +0800 |
---|---|---|
committer | JSDurand <mmemmew@gmail.com> | 2021-01-20 17:10:01 +0800 |
commit | 53db9402916822e673b3b49fcba26537e2416b59 (patch) | |
tree | 7f999ef9f995871d53051b487cd347876c5e43ce /eww-conf.el | |
parent | 4d28d444af32ddf4af5900786473fadacc43e4b1 (diff) |
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.
Diffstat (limited to 'eww-conf.el')
-rw-r--r-- | eww-conf.el | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/eww-conf.el b/eww-conf.el new file mode 100644 index 0000000..45c1351 --- /dev/null +++ b/eww-conf.el @@ -0,0 +1,19 @@ +;;; eww-conf.el --- My configurations for Emacs Web Wowser -*- lexical-binding: t; -*- + +;;; Author: Durand +;;; Created: 2021-01-20 + +;;; Commentary: + +;; Simply configurations for the great Emacs Web Wowser + +;;; Code: + +(setq eww-bookmarks-directory load-file-directory) + + + + +(provide 'eww-conf) + +;;; eww-conf.el ends here |