1
0

Updated init.el.org

This commit is contained in:
2025-03-16 22:30:25 +01:00
parent 535c8429d1
commit 74c6988df1

View File

@@ -1,5 +1,5 @@
#+title: init.el.org
#+lastmod: [2025-03-16 Sun 15:55]
#+lastmod: [2025-03-16 Sun 22:29]
How to tangle: ~M-x org-babel-tangle [C-c C-v t]~
@@ -37,7 +37,7 @@ https://github.com/jwiegley/use-package
#+begin_src elisp
(defun reload-emacs-configuration ()
(interactive)
(load-file "~/.emacs.d/init-shell.el")
(load-file "~/.emacs.d/init.el")
(message "Configuarion reloaded!"))
#+end_src
@@ -106,6 +106,15 @@ https://www.gnu.org/software/emacs/manual/html_node/emacs/Auto-Revert.html
(setq global-auto-revert-non-file-buffers t)
#+end_src
** Enable mouse support
https://emacsdocs.org/docs/emacs/Mouse-Commands#c-m-mouse-1
https://emacsdocs.org/docs/emacs/Text_002dOnly-Mouse
#+begin_src elisp
(xterm-mouse-mode 1)
(mouse-wheel-mode 1)
#+end_src
** Sentences
https://www.gnu.org/software/emacs/manual/html_node/efaq/Filling-paragraphs-with-a-single-space.html
@@ -137,7 +146,14 @@ https://github.com/Fanael/rainbow-delimiters
:init)
#+end_src
** org-appear
** Electric pair mode
https://emacsdocs.org/docs/emacs/Matching
#+begin_src elisp
(electric-pair-mode 1)
#+end_src
** Org-appear
https://github.com/awth13/org-appear
#+begin_src elisp
@@ -375,10 +391,3 @@ Update time stamp on save.
(add-hook 'before-save-hook 'time-stamp)
(setq time-stamp-active t)
#+end_src
** DISABLED Server
#+begin_src elisp :tangle no
(require 'server)
(if (not (server-running-p)) (server-start))
#+end_src