Updated init.el.org
This commit is contained in:
29
init.el.org
29
init.el.org
@@ -1,5 +1,5 @@
|
|||||||
#+title: init.el.org
|
#+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]~
|
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
|
#+begin_src elisp
|
||||||
(defun reload-emacs-configuration ()
|
(defun reload-emacs-configuration ()
|
||||||
(interactive)
|
(interactive)
|
||||||
(load-file "~/.emacs.d/init-shell.el")
|
(load-file "~/.emacs.d/init.el")
|
||||||
(message "Configuarion reloaded!"))
|
(message "Configuarion reloaded!"))
|
||||||
#+end_src
|
#+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)
|
(setq global-auto-revert-non-file-buffers t)
|
||||||
#+end_src
|
#+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
|
** Sentences
|
||||||
https://www.gnu.org/software/emacs/manual/html_node/efaq/Filling-paragraphs-with-a-single-space.html
|
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)
|
:init)
|
||||||
#+end_src
|
#+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
|
https://github.com/awth13/org-appear
|
||||||
|
|
||||||
#+begin_src elisp
|
#+begin_src elisp
|
||||||
@@ -375,10 +391,3 @@ Update time stamp on save.
|
|||||||
(add-hook 'before-save-hook 'time-stamp)
|
(add-hook 'before-save-hook 'time-stamp)
|
||||||
(setq time-stamp-active t)
|
(setq time-stamp-active t)
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
** DISABLED Server
|
|
||||||
|
|
||||||
#+begin_src elisp :tangle no
|
|
||||||
(require 'server)
|
|
||||||
(if (not (server-running-p)) (server-start))
|
|
||||||
#+end_src
|
|
||||||
|
|||||||
Reference in New Issue
Block a user