diff options
-rw-r--r-- | config.org | 39 |
1 files changed, 38 insertions, 1 deletions
diff --git a/config.org b/config.org index 8d1faaa..bdbc1e0 100644 --- a/config.org +++ b/config.org | |||
@@ -1414,6 +1414,18 @@ see also | |||
1414 | (setq-default set-mark-repeat-command-pop t) | 1414 | (setq-default set-mark-repeat-command-pop t) |
1415 | #+end_src | 1415 | #+end_src |
1416 | 1416 | ||
1417 | ** The Region | ||
1418 | |||
1419 | *** Expand region :package: | ||
1420 | |||
1421 | #+begin_src emacs-lisp :noweb-ref packages | ||
1422 | (straight-use-package 'expand-region) | ||
1423 | #+end_src | ||
1424 | |||
1425 | #+begin_src emacs-lisp :noweb-ref bindings | ||
1426 | (define-key acdw/map (kbd "C-=") #'er/expand-region) | ||
1427 | #+end_src | ||
1428 | |||
1417 | ** Undo :package: | 1429 | ** Undo :package: |
1418 | 1430 | ||
1419 | *** Undo Fu | 1431 | *** Undo Fu |
@@ -1712,6 +1724,28 @@ checks for a shebang). | |||
1712 | (get 'when 'common-lisp-indent-function)) | 1724 | (get 'when 'common-lisp-indent-function)) |
1713 | #+end_src | 1725 | #+end_src |
1714 | 1726 | ||
1727 | *** Web | ||
1728 | |||
1729 | #+begin_src emacs-lisp :noweb-ref packages | ||
1730 | (straight-use-package 'web-mode) | ||
1731 | (require 'web-mode) | ||
1732 | #+end_src | ||
1733 | |||
1734 | #+begin_src emacs-lisp :noweb-ref hooks | ||
1735 | (add-to-list 'auto-mode-alist '("\\.phtml\\'" . web-mode)) | ||
1736 | (add-to-list 'auto-mode-alist '("\\.tpl\\.php\\'" . web-mode)) | ||
1737 | (add-to-list 'auto-mode-alist '("\\.[agj]sp\\'" . web-mode)) | ||
1738 | (add-to-list 'auto-mode-alist '("\\.as[cp]x\\'" . web-mode)) | ||
1739 | (add-to-list 'auto-mode-alist '("\\.erb\\'" . web-mode)) | ||
1740 | (add-to-list 'auto-mode-alist '("\\.mustache\\'" . web-mode)) | ||
1741 | (add-to-list 'auto-mode-alist '("\\.djhtml\\'" . web-mode)) | ||
1742 | (add-to-list 'auto-mode-alist '("\\.html?\\'" . web-mode)) | ||
1743 | #+end_src | ||
1744 | |||
1745 | #+begin_src emacs-lisp :noweb-ref settings | ||
1746 | (setq-default web-mode-enable-current-element-highlight t) | ||
1747 | #+end_src | ||
1748 | |||
1715 | * Applications | 1749 | * Applications |
1716 | 1750 | ||
1717 | Emacs is well-known for its ability to subsume one's entire computing | 1751 | Emacs is well-known for its ability to subsume one's entire computing |
@@ -1969,7 +2003,8 @@ See [[https://github.com/redguardtoo/mastering-emacs-in-one-year-guide/blob/mast | |||
1969 | #+begin_src emacs-lisp :noweb-ref settings | 2003 | #+begin_src emacs-lisp :noweb-ref settings |
1970 | (setq elfeed-feeds | 2004 | (setq elfeed-feeds |
1971 | `( | 2005 | `( |
1972 | ("https://atthis.link/rss.xml" blags tech) | 2006 | ("https://wflewis.com/feed.xml" blags fwends) |
2007 | ("HTTPS://atthis.link/rss.xml" blags tech) | ||
1973 | ("https://rachelbythebay.com/w/atom.xml" blags tech) | 2008 | ("https://rachelbythebay.com/w/atom.xml" blags tech) |
1974 | ("https://notes.neeasade.net/rss_full.xml" blags tech) | 2009 | ("https://notes.neeasade.net/rss_full.xml" blags tech) |
1975 | ("https://www.uninformativ.de/blog/feeds/en.atom" blags tech) | 2010 | ("https://www.uninformativ.de/blog/feeds/en.atom" blags tech) |
@@ -2025,6 +2060,8 @@ See [[https://github.com/redguardtoo/mastering-emacs-in-one-year-guide/blob/mast | |||
2025 | ("http://tilde.town/~m455/javapool.rss" tilde) | 2060 | ("http://tilde.town/~m455/javapool.rss" tilde) |
2026 | ("https://spwhitton.name/blog/index.rss" blags) | 2061 | ("https://spwhitton.name/blog/index.rss" blags) |
2027 | ("https://www.theadvocate.com/search/?f=rss&t=article&l=50" news) | 2062 | ("https://www.theadvocate.com/search/?f=rss&t=article&l=50" news) |
2063 | ("https://esoteric.codes/rss" tech) | ||
2064 | ("https://wphicks.github.io/feed.xml" blags) | ||
2028 | )) | 2065 | )) |
2029 | #+end_src | 2066 | #+end_src |
2030 | 2067 | ||