You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1863 lines
57 KiB

5 years ago
2 years ago
3 years ago
3 years ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
6 years ago
7 months ago
7 months ago
7 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
1 year ago
9 months ago
9 months ago
9 months ago
6 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
8 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
1 year ago
9 months ago
9 months ago
2 years ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
6 years ago
9 months ago
9 months ago
9 months ago
6 years ago
9 months ago
6 years ago
6 years ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
9 months ago
1 year ago
1 year ago
  1. #+TITLE: Emacs configuration file
  2. #+AUTHOR: Marc
  3. #+BABEL: :cache yes
  4. #+PROPERTY: header-args :tangle init.el
  5. #+OPTIONS: ^:nil
  6. * TODOS
  7. - early-init.el? What to outsource here?
  8. - Paket exec-path-from-shell, um PATH aus Linux auch in emacs zu haben
  9. - Smart mode line?
  10. - Theme
  11. - flymake instead of flycheck?
  12. - Hydra
  13. - General
  14. - (defalias 'list-buffers 'ibuffer) ;; change default to ibuffer
  15. - ido?
  16. - treemacs (for linux)
  17. windmove?
  18. - tramp (in linux)
  19. - visual-regexp
  20. - org configuration: paths
  21. - org custom agenda
  22. - org-ql (related to org agendas)
  23. - org configuration: everything else
  24. - beancount configuration from config.org
  25. - CONTINUE TODO from config.org at Programming
  26. - all-the-icons?
  27. - lispy? [[https://github.com/abo-abo/lispy]]
  28. * Header
  29. Emacs variables are dynamically scoped. That's unusual for most languages, so disable it here, too
  30. #+begin_src emacs-lisp
  31. ;;; init.el --- -*- lexical-binding: t -*-
  32. #+end_src
  33. * First start
  34. These functions updates config.el whenever changes in config.org are made. The update will be active after saving.
  35. #+BEGIN_SRC emacs-lisp
  36. (defun my/tangle-config ()
  37. "Export code blocks from the literate config file."
  38. (interactive)
  39. ;; prevent emacs from killing until tangle-process has finished
  40. (add-to-list 'kill-emacs-query-functions
  41. (lambda ()
  42. (or (not (process-live-p (get-process "tangle-process")))
  43. (y-or-n-p "\"my/tangle-config\" is running; kill it? "))))
  44. (org-babel-tangle-file config-org init-el)
  45. (message "reloading user-init-file")
  46. (load-file init-el))
  47. (add-hook 'org-mode-hook
  48. (lambda ()
  49. (if (equal (buffer-file-name) config-org)
  50. (my--add-local-hook 'after-save-hook 'my/tangle-config))))
  51. (defun my--add-local-hook (hook function)
  52. "Add buffer-local hook."
  53. (add-hook hook function :local t))
  54. #+END_SRC
  55. A small function to measure start up time.
  56. Compare that to
  57. emacs -q --eval='(message "%s" (emacs-init-time))'
  58. (roughly 0.27s)
  59. https://blog.d46.us/advanced-emacs-startup/
  60. #+begin_src emacs-lisp
  61. (add-hook 'emacs-startup-hook
  62. (lambda ()
  63. (message "Emacs ready in %s with %d garbage collections."
  64. (format "%.2f seconds"
  65. (float-time
  66. (time-subtract after-init-time before-init-time)))
  67. gcs-done)))
  68. ;(setq gc-cons-threshold (* 50 1000 1000))
  69. #+end_src
  70. * Default settings
  71. ** paths
  72. #+BEGIN_SRC emacs-lisp
  73. (defconst *sys/gui*
  74. (display-graphic-p)
  75. "Is emacs running in a gui?")
  76. (defconst *sys/linux*
  77. (string-equal system-type 'gnu/linux)
  78. "Is the system running Linux?")
  79. (defconst *sys/windows*
  80. (string-equal system-type 'windows-nt)
  81. "Is the system running Windows?")
  82. (defconst *home_desktop*
  83. (string-equal (system-name) "marc")
  84. "Is emacs running on my desktop?")
  85. (defconst *home_laptop*
  86. (string-equal (system-name) "laptop")
  87. "Is emacs running on my laptop?")
  88. (defconst *work_local*
  89. (string-equal (system-name) "PMPCNEU08")
  90. "Is emacs running at work on the local system?")
  91. (defconst *work_remote*
  92. (or (string-equal (system-name) "PMTS01")
  93. (string-equal (system-name) "PMTSNEU01"))
  94. "Is emacs running at work on the remote system?")
  95. #+END_SRC
  96. #+BEGIN_SRC emacs-lisp
  97. (defvar MY--PATH_USER_LOCAL (concat user-emacs-directory "user-local/"))
  98. (defvar MY--PATH_USER_GLOBAL (concat user-emacs-directory "user-global/"))
  99. (add-to-list 'custom-theme-load-path (concat MY--PATH_USER_GLOBAL "themes"))
  100. (when *sys/linux*
  101. (defconst MY--PATH_ORG_FILES (expand-file-name "~/Archiv/Organisieren/"))
  102. (defconst MY--PATH_ORG_FILES_MOBILE (expand-file-name "~/Archiv/Organisieren/mobile/"))
  103. (defconst MY--PATH_ORG_JOURNAl (expand-file-name "~/Archiv/Organisieren/Journal/"))
  104. (defconst MY--PATH_ORG_ROAM (file-truename "~/Archiv/Organisieren/")))
  105. (when *work_remote*
  106. (defconst MY--PATH_ORG_FILES "p:/Eigene Dateien/Notizen/")
  107. (defconst MY--PATH_ORG_FILES_MOBILE nil) ;; hacky way to prevent "free variable" compiler error
  108. (defconst MY--PATH_ORG_JOURNAL nil) ;; hacky way to prevent "free variable" compiler error
  109. (defconst MY--PATH_START "p:/Eigene Dateien/Notizen/")
  110. (defconst MY--PATH_ORG_ROAM (expand-file-name "p:/Eigene Dateien/Notizen/")))
  111. (setq custom-file (concat MY--PATH_USER_LOCAL "custom.el")) ;; don't spam init.e with saved customization settings
  112. (setq backup-directory-alist `((".*" . ,temporary-file-directory)))
  113. (setq auto-save-file-name-transforms `((".*" ,temporary-file-directory)))
  114. (customize-set-variable 'auth-sources (list (concat MY--PATH_USER_LOCAL "authinfo")
  115. (concat MY--PATH_USER_LOCAL "authinfo.gpg")
  116. (concat MY--PATH_USER_LOCAL "netrc")))
  117. #+end_src
  118. ** Browser
  119. #+begin_src emacs-lisp
  120. (setq browse-url-function 'browse-url-generic
  121. browse-url-generic-program "firefox")
  122. #+end_src* Package Management
  123. ** Elpaca
  124. Boilerplate for Elpaca
  125. #+begin_src emacs-lisp
  126. (defvar elpaca-installer-version 0.7)
  127. (defvar elpaca-directory (expand-file-name "elpaca/" user-emacs-directory))
  128. (defvar elpaca-builds-directory (expand-file-name "builds/" elpaca-directory))
  129. (defvar elpaca-repos-directory (expand-file-name "repos/" elpaca-directory))
  130. (defvar elpaca-order '(elpaca :repo "https://github.com/progfolio/elpaca.git"
  131. :ref nil :depth 1
  132. :files (:defaults "elpaca-test.el" (:exclude "extensions"))
  133. :build (:not elpaca--activate-package)))
  134. (let* ((repo (expand-file-name "elpaca/" elpaca-repos-directory))
  135. (build (expand-file-name "elpaca/" elpaca-builds-directory))
  136. (order (cdr elpaca-order))
  137. (default-directory repo))
  138. (add-to-list 'load-path (if (file-exists-p build) build repo))
  139. (unless (file-exists-p repo)
  140. (make-directory repo t)
  141. (when (< emacs-major-version 28) (require 'subr-x))
  142. (condition-case-unless-debug err
  143. (if-let ((buffer (pop-to-buffer-same-window "*elpaca-bootstrap*"))
  144. ((zerop (apply #'call-process `("git" nil ,buffer t "clone"
  145. ,@(when-let ((depth (plist-get order :depth)))
  146. (list (format "--depth=%d" depth) "--no-single-branch"))
  147. ,(plist-get order :repo) ,repo))))
  148. ((zerop (call-process "git" nil buffer t "checkout"
  149. (or (plist-get order :ref) "--"))))
  150. (emacs (concat invocation-directory invocation-name))
  151. ((zerop (call-process emacs nil buffer nil "-Q" "-L" "." "--batch"
  152. "--eval" "(byte-recompile-directory \".\" 0 'force)")))
  153. ((require 'elpaca))
  154. ((elpaca-generate-autoloads "elpaca" repo)))
  155. (progn (message "%s" (buffer-string)) (kill-buffer buffer))
  156. (error "%s" (with-current-buffer buffer (buffer-string))))
  157. ((error) (warn "%s" err) (delete-directory repo 'recursive))))
  158. (unless (require 'elpaca-autoloads nil t)
  159. (require 'elpaca)
  160. (elpaca-generate-autoloads "elpaca" repo)
  161. (load "./elpaca-autoloads")))
  162. (add-hook 'after-init-hook #'elpaca-process-queues)
  163. (elpaca `(,@elpaca-order))
  164. ;;at work symlinks wont work, and open file limit can be an issue
  165. (when *work_remote*
  166. (setq elpaca-queue-limit 12)
  167. (elpaca-no-symlink-mode))
  168. ;(setq use-package-always-ensure t)
  169. (elpaca elpaca-use-package
  170. ;; enable use-package :ensure support for elpaca
  171. (elpaca-use-package-mode))
  172. (elpaca-wait)
  173. #+end_src
  174. * use-package keywords general / diminish
  175. Needs to be loaded before any other package which uses the :general keyword
  176. #+BEGIN_SRC emacs-lisp
  177. (use-package general
  178. :ensure t
  179. :demand t)
  180. (use-package diminish
  181. :ensure t
  182. :demand t)
  183. ;;wait for elpaca any time a use-package keyword is added
  184. (elpaca-wait)
  185. #+END_SRC
  186. * sane defaults
  187. #+begin_src emacs-lisp
  188. (setq-default create-lockfiles nil) ;; disable lock files, can cause trouble in e.g. lsp-mode
  189. (defalias 'yes-or-no-p 'y-or-n-p) ;; answer with y and n
  190. (setq custom-safe-themes t) ;; don't ask me if I want to load a theme
  191. (setq sentence-end-double-space nil) ;; don't coun two spaces after a period as the end of a sentence.
  192. (delete-selection-mode t) ;; delete selected region when typing
  193. (use-package saveplace
  194. :ensure nil
  195. :config
  196. (save-place-mode 1) ;; saves position in file when it's closed
  197. :custom
  198. (save-place-file (concat MY--PATH_USER_LOCAL "places")))
  199. (setq save-place-forget-unreadable-files nil) ;; checks if file is readable before saving position
  200. (global-set-key (kbd "RET") 'newline-and-indent) ;; indent after newline
  201. (setq save-interprogram-paste-before-kill t) ;; put replaced text into killring
  202. ;; https://emacs.stackexchange.com/questions/3673/how-to-make-vc-and-magit-treat-a-symbolic-link-to-a-real-file-in-git-repo-just
  203. (setq find-file-visit-truename t) ;; some programs like lsp have trouble following symlinks, maybe vc-follow-symlinks would be enough
  204. #+END_SRC
  205. * Performance Optimization
  206. ** Garbage Collection
  207. Make startup faster by reducing the frequency of garbage collection.
  208. Set gc-cons-threshold (default is 800kb) to maximum value available, to prevent any garbage collection from happening during load time.
  209. #+BEGIN_SRC emacs-lisp :tangle early-init.el
  210. (setq gc-cons-threshold most-positive-fixnum)
  211. #+END_SRC
  212. Restore it to reasonable value after init. Also stop garbage collection during minibuffer interaction (helm etc.)
  213. #+begin_src emacs-lisp
  214. (defconst 1mb 1048576)
  215. (defconst 20mb 20971520)
  216. (defconst 30mb 31457280)
  217. (defconst 50mb 52428800)
  218. (defun my--defer-garbage-collection ()
  219. (setq gc-cons-threshold most-positive-fixnum))
  220. (defun my--restore-garbage-collection ()
  221. (run-at-time 1 nil (lambda () (setq gc-cons-threshold 30mb))))
  222. (add-hook 'emacs-startup-hook 'my--restore-garbage-collection 100)
  223. (add-hook 'minibuffer-setup-hook 'my--defer-garbage-collection)
  224. (add-hook 'minibuffer-exit-hook 'my--restore-garbage-collection)
  225. (setq read-process-output-max 1mb) ;; lsp-mode's performance suggest
  226. #+end_src
  227. ** File Handler
  228. #+begin_src emacs-lisp :tangle early-init.el
  229. (defvar default-file-name-handler-alist file-name-handler-alist)
  230. (setq file-name-handler-alist nil)
  231. (add-hook 'emacs-startup-hook
  232. (lambda ()
  233. (setq file-name-handler-alist default-file-name-handler-alist)) 100)
  234. #+end_src
  235. ** Others
  236. #+begin_src emacs-lisp :tangle early-init.el
  237. ;; Resizing the emacs frame can be a terriblu expensive part of changing the font.
  238. ;; By inhibiting this, we easily hale startup times with fonts that are larger
  239. ;; than the system default.
  240. (setq package-enable-at-startup nil)
  241. (setq frame-inhibit-implied-resize t)
  242. #+end_src
  243. * Appearance
  244. ** Defaults
  245. #+begin_src emacs-lisp
  246. (set-charset-priority 'unicode)
  247. (setq-default locale-coding-system 'utf-8
  248. default-process-coding-system '(utf-8-unix . utf-8-unix))
  249. (set-terminal-coding-system 'utf-8)
  250. (set-keyboard-coding-system 'utf-8)
  251. (set-selection-coding-system 'utf-8)
  252. (if *sys/windows*
  253. (progn
  254. (prefer-coding-system 'utf-8-dos)
  255. (set-clipboard-coding-system 'utf-16-le)
  256. (set-selection-coding-system 'utf-16-le))
  257. (prefer-coding-system 'utf-8))
  258. (setq-default bidi-paragraph-direction 'left-to-right
  259. bidi-inhibit-bpa t ;; both settings reduce line rescans
  260. uniquify-buffer-name-style 'forward
  261. indent-tabs-mode nil ;; avoid tabs in place of multiple spaces (they look bad in tex)
  262. indicate-empty-lines t ;; show empty lines
  263. scroll-margin 5 ;; smooth scrolling
  264. scroll-conservatively 10000
  265. scroll-preserve-screen-position 1
  266. scroll-step 1
  267. ring-bell-function 'ignore ;; disable pc speaker bell
  268. visible-bell t)
  269. (global-hl-line-mode t) ;; highlight current line
  270. (blink-cursor-mode -1) ;; turn off blinking cursor
  271. (column-number-mode t)
  272. #+end_src
  273. ** Remove redundant UI
  274. #+begin_src emacs-lisp :tangle early-init.el
  275. (menu-bar-mode -1) ;; disable menu bar
  276. (tool-bar-mode -1) ;; disable tool bar
  277. (scroll-bar-mode -1) ;; disable scroll bar
  278. #+end_src
  279. ** Font
  280. #+BEGIN_SRC emacs-lisp
  281. (when *sys/linux*
  282. (set-face-font 'default "Hack-10"))
  283. (when *work_remote*
  284. (set-face-font 'default "Lucida Sans Typewriter-11"))
  285. #+END_SRC
  286. ** Themes
  287. #+BEGIN_SRC emacs-lisp
  288. (defun my/toggle-theme ()
  289. (interactive)
  290. (when (or *sys/windows* *sys/linux*)
  291. (if (eq (car custom-enabled-themes) 'plastic)
  292. (progn (disable-theme 'plastic)
  293. (load-theme 'leuven))
  294. (progn
  295. (disable-theme 'leuven)
  296. (load-theme 'plastic)))))
  297. (bind-key "C-c t" 'my/toggle-theme)
  298. #+END_SRC
  299. Windows Theme:
  300. #+BEGIN_SRC emacs-lisp
  301. (when *sys/windows*
  302. (mapcar #'disable-theme custom-enabled-themes)
  303. (load-theme 'tango))
  304. (when *sys/linux*
  305. (mapcar #'disable-theme custom-enabled-themes)
  306. (load-theme 'plastic))
  307. #+END_SRC
  308. ** line wrappings
  309. #+BEGIN_SRC emacs-lisp
  310. (global-visual-line-mode)
  311. ;(diminish 'visual-line-mode)
  312. (use-package adaptive-wrap
  313. :ensure t
  314. :hook
  315. (visual-line-mode . adaptive-wrap-prefix-mode))
  316. ; :init
  317. ; (when (fboundp 'adaptive-wrap-prefix-mode)
  318. ; (defun me/activate-adaptive-wrap-prefix-mode ()
  319. ; "Toggle `visual-line-mode' and `adaptive-wrap-prefix-mode' simultaneously."
  320. ; (adaptive-wrap-prefix-mode (if visual-line-mode 1 -1)))
  321. ; (add-hook 'visual-line-mode-hook 'me/activate-adaptive-wrap-prefix-mode)))
  322. #+END_SRC
  323. ** line numbers
  324. #+BEGIN_SRC emacs-lisp
  325. (use-package display-line-numbers
  326. :ensure nil
  327. :init
  328. :hook
  329. ((prog-mode
  330. org-src-mode) . display-line-numbers-mode)
  331. :config
  332. (setq-default display-line-numbers-type 'visual
  333. display-line-numbers-current-absolute t
  334. display-line-numbers-with 4
  335. display-line-numbers-widen t))
  336. #+END_SRC
  337. ** misc
  338. Delight can replace mode names with custom names ,
  339. e.g. python-mode with just "π ".
  340. #+BEGIN_SRC emacs-lisp
  341. (use-package rainbow-mode
  342. :ensure t
  343. :diminish
  344. :hook
  345. ((org-mode
  346. emacs-lisp-mode) . rainbow-mode))
  347. (use-package delight
  348. :if *sys/linux*
  349. :ensure t)
  350. (show-paren-mode t) ;; show other part of brackets
  351. (setq blink-matching-paren nil) ;; not necessary with show-paren-mode, bugs out on C-s counsel-line
  352. (use-package rainbow-delimiters
  353. :ensure t
  354. :hook
  355. (prog-mode . rainbow-delimiters-mode))
  356. #+END_SRC
  357. * dired
  358. #+begin_src emacs-lisp
  359. (use-package dired
  360. :ensure nil
  361. :custom
  362. (dired-kill-when-opening-new-dired-buffer t))
  363. #+end_src
  364. * Bookmarks
  365. Usage:
  366. - C-x r m (bookmark-set): add bookmark
  367. - C-x r l (list-bookmark): list bookmarks
  368. - C-x r b (bookmark-jump): open bookmark
  369. Edit bookmarks (while in bookmark file):
  370. - d: mark current item
  371. - x: delete marked items
  372. - r: rename current item
  373. - s: save changes
  374. #+begin_src emacs-lisp
  375. (use-package bookmark
  376. :ensure nil
  377. :custom
  378. (bookmark-default-file (concat MY--PATH_USER_LOCAL "bookmarks")))
  379. ;;do I really want this?
  380. (use-package bookmark+
  381. :ensure (:host github :repo "emacsmirror/bookmark-plus"))
  382. #+end_src
  383. Some windows specific stuff
  384. #+BEGIN_SRC emacs-lisp
  385. (when *sys/windows*
  386. (remove-hook 'find-file-hook 'vc-refresh-state)
  387. ; (progn
  388. ; (setq gc-cons-threshold (* 511 1024 1024)
  389. ; gc-cons-percentage 0.5
  390. ; garbage-collection-messages t
  391. ; (run-with-idle-timer 5 t #'garbage-collect))
  392. (when (boundp 'w32-pipe-read-delay)
  393. (setq w32-pipe-read-delay 0))
  394. (when (boundp 'w32-get-true-file-attributes)
  395. (setq w32-get-true-file-attributes nil)))
  396. #+END_SRC
  397. * burly
  398. [[https://github.com/alphapapa/burly.el][Github]]
  399. Store window configuration and save them as a bookmark
  400. burly-bookmark-windows: bookmarks the current window layout
  401. #+begin_src emacs-lisp
  402. (use-package burly
  403. :ensure t
  404. :config
  405. (burly-tabs-mode) ;;open a burly window bookbark in a new tab
  406. )
  407. #+end_src
  408. * recentf
  409. Exclude some dirs from spamming recentf
  410. #+begin_src emacs-lisp
  411. (use-package recentf
  412. :ensure nil
  413. ; :defer 1
  414. :config
  415. (recentf-mode)
  416. :custom
  417. (recentf-exclude '(".*-autoloads\\.el\\'"
  418. "[/\\]\\elpa/"
  419. "COMMIT_EDITMSG\\'"))
  420. (recentf-save-file (concat MY--PATH_USER_LOCAL "recentf"))
  421. (recentf-max-menu-items 600)
  422. (recentf-max-saved-items 600))
  423. #+end_src
  424. * savehist
  425. #+begin_src emacs-lisp
  426. (use-package savehist
  427. :ensure nil
  428. :config
  429. (savehist-mode)
  430. :custom
  431. (savehist-file (concat MY--PATH_USER_LOCAL "history")))
  432. #+end_src
  433. * undo
  434. #+BEGIN_SRC emacs-lisp
  435. (use-package undo-tree
  436. :ensure t
  437. :diminish undo-tree-mode
  438. :init
  439. (global-undo-tree-mode 1)
  440. :custom
  441. (undo-tree-auto-save-history nil))
  442. #+END_SRC
  443. * COMMENT ace-window (now avy)
  444. #+begin_src emacs-lisp
  445. (use-package ace-window
  446. :ensure t
  447. :bind
  448. (:map global-map
  449. ("C-x o" . ace-window)))
  450. #+end_src
  451. * which-key
  452. #+BEGIN_SRC emacs-lisp
  453. (use-package which-key
  454. :ensure t
  455. :diminish which-key-mode
  456. :custom
  457. (which-key-idle-delay 0.5)
  458. (which-key-sort-order 'which-key-description-order)
  459. :config
  460. (which-key-mode)
  461. (which-key-setup-side-window-bottom))
  462. #+END_SRC
  463. * abbrev
  464. #+begin_src emacs-lisp
  465. (use-package abbrev
  466. :ensure nil
  467. :diminish abbrev-mode
  468. :hook
  469. ((text-mode org-mode) . abbrev-mode)
  470. :init
  471. (setq abbrev-file-name (concat MY--PATH_USER_GLOBAL "abbrev_tables.el"))
  472. :config
  473. (if (file-exists-p abbrev-file-name)
  474. (quietly-read-abbrev-file))
  475. (setq save-abbrevs 'silently)) ;; don't bother me with asking for abbrev saving
  476. #+end_src
  477. * imenu-list
  478. A minor mode to show imenu in a sidebar.
  479. Call imenu-list-smart-toggle.
  480. [[https://github.com/bmag/imenu-list][Source]]
  481. #+BEGIN_SRC emacs-lisp
  482. (use-package imenu-list
  483. :ensure t
  484. :demand t ; otherwise mode loads too late and won't work on first file it's being activated on
  485. :config
  486. (setq imenu-list-focus-after-activation t
  487. imenu-list-auto-resize t
  488. imenu-list-position 'right)
  489. :general
  490. ([f9] 'imenu-list-smart-toggle)
  491. (:states '(normal insert)
  492. :keymaps 'imenu-list-major-mode-map
  493. "RET" '(imenu-list-goto-entry :which-key "goto")
  494. "TAB" '(hs-toggle-hiding :which-key "collapse")
  495. "v" '(imenu-list-display-entry :which-key "show") ; also prevents visual mode
  496. "q" '(imenu-list-quit-window :which-key "quit"))
  497. :custom
  498. (org-imenu-depth 4))
  499. #+END_SRC
  500. * COMMENT Evil
  501. See also
  502. https://github.com/noctuid/evil-guide
  503. Use C-z (evil-toggle-key) to switch between evil and emacs keybindings,
  504. in case evil is messing something up.
  505. #+BEGIN_SRC emacs-lisp
  506. (use-package evil
  507. :ensure t
  508. :defer .1
  509. :custom
  510. (evil-want-C-i-jump nil) ;; prevent evil from blocking TAB in org tree expanding
  511. (evil-want-integration t)
  512. (evil-want-keybinding nil)
  513. :config
  514. ;; example for using emacs default key map in a certain mode
  515. ;; (evil-set-initial-state 'dired-mode 'emacs)
  516. (evil-mode 1))
  517. #+END_SRC
  518. * Eldoc
  519. use builtin version
  520. #+begin_src emacs-lisp
  521. (use-package eldoc
  522. :ensure nil
  523. :diminish eldoc-mode
  524. :defer t)
  525. #+end_src
  526. * COMMENT Eldoc Box
  527. Currently corfu-popupinfo displays eldoc in highlighted completion candidate. Maybe that's good enough.
  528. #+begin_src emacs-lisp
  529. (use-package eldoc-box
  530. :ensure t)
  531. #+end_src
  532. * Meow
  533. #+begin_src emacs-lisp
  534. (use-package meow
  535. :ensure t
  536. :config
  537. (setq meow-cheatsheet-layout meow-cheatsheet-layout-qwerty)
  538. (meow-motion-overwrite-define-key
  539. '("j" . meow-next)
  540. '("k" . meow-prev)
  541. '("<escape>" . ignore))
  542. (meow-leader-define-key
  543. ;; SPC j/k will run the original command in MOTION state.
  544. '("j" . "H-j")
  545. '("k" . "H-k")
  546. ;; Use SPC (0-9) for digit arguments.
  547. '("1" . meow-digit-argument)
  548. '("2" . meow-digit-argument)
  549. '("3" . meow-digit-argument)
  550. '("4" . meow-digit-argument)
  551. '("5" . meow-digit-argument)
  552. '("6" . meow-digit-argument)
  553. '("7" . meow-digit-argument)
  554. '("8" . meow-digit-argument)
  555. '("9" . meow-digit-argument)
  556. '("0" . meow-digit-argument)
  557. '("/" . meow-keypad-describe-key)
  558. '("?" . meow-cheatsheet))
  559. (meow-normal-define-key
  560. '("0" . meow-expand-0)
  561. '("9" . meow-expand-9)
  562. '("8" . meow-expand-8)
  563. '("7" . meow-expand-7)
  564. '("6" . meow-expand-6)
  565. '("5" . meow-expand-5)
  566. '("4" . meow-expand-4)
  567. '("3" . meow-expand-3)
  568. '("2" . meow-expand-2)
  569. '("1" . meow-expand-1)
  570. '("-" . negative-argument)
  571. '(";" . meow-reverse)
  572. '("," . meow-inner-of-thing)
  573. '("." . meow-bounds-of-thing)
  574. '("[" . meow-beginning-of-thing)
  575. '("]" . meow-end-of-thing)
  576. '("a" . meow-append)
  577. '("A" . meow-open-below)
  578. '("b" . meow-back-word)
  579. '("B" . meow-back-symbol)
  580. '("c" . meow-change)
  581. '("d" . meow-delete)
  582. '("D" . meow-backward-delete)
  583. '("e" . meow-next-word)
  584. '("E" . meow-next-symbol)
  585. '("f" . meow-find)
  586. '("g" . meow-cancel-selection)
  587. '("G" . meow-grab)
  588. '("h" . meow-left)
  589. '("H" . meow-left-expand)
  590. '("i" . meow-insert)
  591. '("I" . meow-open-above)
  592. '("j" . meow-next)
  593. '("J" . meow-next-expand)
  594. '("k" . meow-prev)
  595. '("K" . meow-prev-expand)
  596. '("l" . meow-right)
  597. '("L" . meow-right-expand)
  598. '("m" . meow-join)
  599. '("n" . meow-search)
  600. '("o" . meow-block)
  601. '("O" . meow-to-block)
  602. '("p" . meow-yank)
  603. '("q" . meow-quit)
  604. '("Q" . meow-goto-line)
  605. '("r" . meow-replace)
  606. '("R" . meow-swap-grab)
  607. '("s" . meow-kill)
  608. '("t" . meow-till)
  609. '("u" . meow-undo)
  610. '("U" . meow-undo-in-selection)
  611. '("v" . meow-visit)
  612. '("w" . meow-mark-word)
  613. '("W" . meow-mark-symbol)
  614. '("x" . meow-line)
  615. '("X" . meow-goto-line)
  616. '("y" . meow-save)
  617. '("Y" . meow-sync-grab)
  618. '("z" . meow-pop-selection)
  619. '("'" . repeat)
  620. '("<escape>" . ignore))
  621. ; :config
  622. (meow-global-mode t))
  623. #+end_src
  624. * avy
  625. Search, move, copy, delete text within all visible buffers.
  626. Also replaces ace-window for buffer switching.
  627. [[https://github.com/abo-abo/avy]]
  628. #+BEGIN_SRC emacs-lisp
  629. (use-package avy
  630. :ensure t
  631. :general
  632. (:prefix "M-s"
  633. "" '(:ignore t :which-key "avy")
  634. "w" '(avy-goto-char-2 :which-key "avy-jump")
  635. "s" '(avy-goto-char-timer :which-key "avy-timer")
  636. "c" '(:ignore t :which-key "avy copy")
  637. "c l" '(avy-copy-line :which-key "avy copy line")
  638. "c r" '(avy-copy-region :which-key "avy copy region")
  639. "m" '(:ignore t :which-key "avy move")
  640. "m l" '(avy-move-line :which-key "avy move line")
  641. "m r" '(avy-move-region :which-key "avy move region")))
  642. #+END_SRC
  643. * Vertico
  644. Vertico is a completion ui for the minibuffer and replaced selectrum.
  645. [[https://github.com/minad/vertico][Vertico Github]]
  646. #+begin_src emacs-lisp
  647. ;; completion ui
  648. (use-package vertico
  649. :ensure t
  650. :init
  651. (vertico-mode))
  652. #+end_src
  653. * Corfu
  654. Completion ui, replaces company.
  655. [[https://github.com/minad/corfu][Corfu Github]]
  656. #+begin_src emacs-lisp
  657. (use-package corfu
  658. :ensure t
  659. :after savehist
  660. :custom
  661. (corfu-popupinfo-delay t)
  662. (corfu-auto t)
  663. (corfu-cycle t)
  664. (corfu-auto-delay 0.3)
  665. (corfu-preselect-first nil)
  666. (corfu-popupinfo-delay '(1.0 . 0.0)) ;1s for first popup, instant for subsequent popups
  667. (corfu-popupinfo-max-width 70)
  668. (corfu-popupinfo-max-height 20)
  669. :init
  670. (global-corfu-mode)
  671. ; (corfu-popupinfo-mode) ; causes corfu window to stay
  672. (corfu-history-mode)
  673. ;; belongs to emacs
  674. (add-to-list 'savehist-additional-variables 'corfu-history)
  675. :hook
  676. (corfu-mode . corfu-popupinfo-mode))
  677. ; :bind
  678. ; (:map corfu-map
  679. ; ("TAB" . corfu-next)
  680. ; ("<C-return>" . corfu-insert)
  681. ; ("C-TAB" . corfu-popupinfo-toggle)))
  682. ;; (general-define-key
  683. ;; :states 'insert
  684. ;; :definer 'minor-mode
  685. ;; :keymaps 'completion-in-region-mode
  686. ;; :predicate 'corfu-mode
  687. ;; "C-d" 'corfu-info-documentation)
  688. (use-package emacs
  689. :ensure nil
  690. :init
  691. ;; hide commands in M-x which do not apply to current mode
  692. (setq read-extended-command-predicate #'command-completion-default-include-p)
  693. ;; enable indentation + completion using TAB
  694. (setq tab-always-indent 'complete))
  695. #+end_src
  696. * Cape
  697. Adds completions for corfu
  698. [[https://github.com/minad/cape][Cape Github]]
  699. Available functions:
  700. dabbrev, file, history, keyword, tex, sgml, rfc1345, abbrev, ispell, dict, symbol, line
  701. #+begin_src emacs-lisp
  702. (use-package cape
  703. :ensure t
  704. :bind
  705. (("C-c p p" . completion-at-point) ;; capf
  706. ("C-c p t" . complete-tag) ;; etags
  707. ("C-c p d" . cape-dabbrev)
  708. ("C-c p h" . cape-history)
  709. ("C-c p f" . cape-file))
  710. :init
  711. (advice-add #'lsp-completion-at-point :around #'cape-wrap-noninterruptible) ;; for performance issues with lsp
  712. (add-to-list 'completion-at-point-functions #'cape-dabbrev)
  713. (add-to-list 'completion-at-point-functions #'cape-file)
  714. (add-to-list 'completion-at-point-functions #'cape-history))
  715. #+end_src
  716. * kind-icon
  717. Make corfu pretty
  718. [[https://github.com/jdtsmith/kind-icon][kind-icon Github]]
  719. #+begin_src emacs-lisp
  720. (use-package kind-icon
  721. :ensure t
  722. :after corfu
  723. :custom
  724. (kind-icon-default-face 'corfu-default) ;; to compute blended backgrounds correctly
  725. :config
  726. (add-to-list 'corfu-margin-formatters #'kind-icon-margin-formatter))
  727. #+end_src
  728. * Orderless
  729. [[https://github.com/oantolin/orderless][Orderless Github]]
  730. Orderless orders the suggestions by recency. The package prescient orders by frequency.
  731. #+begin_src emacs-lisp
  732. (use-package orderless
  733. :ensure t
  734. :init
  735. (setq completion-styles '(orderless partial-completion basic)
  736. completion-category-defaults nil
  737. completion-category-overrides nil))
  738. ; completion-category-overrides '((file (styles partial-completion)))))
  739. #+end_src
  740. * Consult
  741. [[https://github.com/minad/consult][Github]]
  742. Default preview key: M-.
  743. #+begin_src emacs-lisp
  744. (use-package consult
  745. :ensure t
  746. :bind
  747. (("C-x C-r" . consult-recent-file)
  748. ("C-x b" . consult-buffer)
  749. ("C-s" . consult-line)
  750. ("C-x r b" . consult-bookmark)) ;replace bookmark-jump
  751. :config
  752. ;; disable preview for some commands and buffers
  753. ;; and enable it by M-.
  754. ;; see https://github.com/minad/consult#use-package-example
  755. (consult-customize
  756. consult-theme :preview-key '(debounce 0.2 any)
  757. consult-ripgrep consult-git-grep consult-grep
  758. consult-bookmark consult-recent-file consult-xref
  759. consult--source-bookmark consult--source-file-register
  760. consult--source-recent-file consult--source-project-recent-file
  761. :preview-key '(:debounce 0.2 any)))
  762. #+end_src
  763. * Marginalia
  764. [[https://github.com/minad/marginalia/][Github]]
  765. Adds additional information to the minibuffer
  766. #+begin_src emacs-lisp
  767. (use-package marginalia
  768. :ensure t
  769. :init
  770. (marginalia-mode)
  771. :bind
  772. (:map minibuffer-local-map
  773. ("M-A" . marginalia-cycle))
  774. :custom
  775. ;; switch by 'marginalia-cycle
  776. (marginalia-annotators '(marginalia-annotators-heavy
  777. marginalia-annotators-light
  778. nil)))
  779. #+end_src
  780. * Embark
  781. Does stuff in the minibuffer results
  782. #+begin_src emacs-lisp
  783. (use-package embark
  784. :ensure t
  785. :bind
  786. (("C-S-a" . embark-act)
  787. ("C-h B" . embark-bindings))
  788. :init
  789. (setq prefix-help-command #'embark-prefix-help-command)
  790. :config
  791. ;; hide modeline of the embark live/completions buffers
  792. (add-to-list 'display-buffer-alist
  793. '("\\`\\*Embark Collect \\(Live\\|Completions\\)\\*"
  794. nil
  795. (window-parameters (mode-line-format . none)))))
  796. (use-package embark-consult
  797. :ensure t
  798. :after (embark consult)
  799. :demand t
  800. :hook
  801. (embark-collect-mode . embark-consult-preview-minor-mode))
  802. #+end_src
  803. * Tree-sitter
  804. #+begin_src emacs-lisp
  805. (when *sys/linux*
  806. (use-package tree-sitter
  807. :ensure t
  808. :init
  809. (global-tree-sitter-mode t)
  810. :hook
  811. (tree-sitter-after-on . tree-sitter-hl-mode))
  812. (use-package tree-sitter-langs
  813. :ensure t
  814. :after tree-sitter)
  815. )
  816. #+end_src
  817. * Org-ql
  818. [[https://github.com/alphapapa/org-ql][org-ql]]
  819. Run queries on org files
  820. #+begin_src emacs-lisp
  821. (use-package org-ql
  822. :ensure t
  823. )
  824. #+end_src
  825. * COMMENT Xeft (needs xapian, not really windows compatible)
  826. Fast full text search for stuff org-ql cannot cover
  827. #+begin_src emacs-lisp
  828. (use-package xeft
  829. :ensure t
  830. :custom
  831. (xeft-recursive 'follow-symlinks))
  832. #+end_src
  833. * COMMENT Helm
  834. As an alternative if I'm not happy with selectrum & co
  835. #+begin_src emacs-lisp
  836. (use-package helm
  837. :ensure t
  838. :hook
  839. (helm-mode . helm-autoresize-mode)
  840. ;; :bind
  841. ;; (("M-x" . helm-M-x)
  842. ;; ("C-s" . helm-occur)
  843. ;; ("C-x C-f" . helm-find-files)
  844. ;; ("C-x C-b" . helm-buffers-list)
  845. ;; ("C-x b" . helm-buffers-list)
  846. ;; ("C-x C-r" . helm-recentf)
  847. ;; ("C-x C-i" . helm-imenu))
  848. :config
  849. (helm-mode)
  850. :custom
  851. (helm-split-window-inside-p t) ;; open helm buffer inside current window
  852. (helm-move-to-line-cycle-in-source t)
  853. (helm-echo-input-in-header-line t)
  854. (helm-autoresize-max-height 20)
  855. (helm-autoresize-min-height 5)
  856. )
  857. #+end_src
  858. * outlook
  859. In outlook a macro is necessary, also a reference to FM20.DLL
  860. (Microsoft Forms 2.0 Object Library, in c:\windows\syswow64\fm20.dll)
  861. The macro copies the GUID of the email to the clipboard
  862. Attention: the GUID changes when the email is moved to another folder!
  863. The macro:
  864. #+BEGIN_SRC
  865. Sub AddLinkToMessageInClipboard()
  866. 'Adds a link to the currently selected message to the clipboard
  867. Dim objMail As Outlook.MailItem
  868. Dim doClipboard As New DataObject
  869. 'One and ONLY one message muse be selected
  870. If Application.ActiveExplorer.Selection.Count <> 1 Then
  871. MsgBox ("Select one and ONLY one message.")
  872. Exit Sub
  873. End If
  874. Set objMail = Application.ActiveExplorer.Selection.Item(1)
  875. doClipboard.SetText "[[outlook:" + objMail.EntryID + "][MESSAGE: " + objMail.Subject + " (" + objMail.SenderName + ")]]"
  876. doClipboard.PutInClipboard
  877. End Sub
  878. #+END_SRC
  879. #+BEGIN_SRC emacs-lisp
  880. ;(org-add-link-type "outlook" 'my--org-outlook-open)
  881. (defun my--org-outlook-open (id)
  882. (w32-shell-execute "open" "outlook" (concat " /select outlook:" id)))
  883. (defun my/org-outlook-open-test ()
  884. (interactive)
  885. (w32-shell-execute "open" "outlook" " /select outlook:000000008A209C397CEF2C4FBA9E54AEB5B1F97F0700846D043B407C5B43A0C05AFC46DC5C630587BE5E020900006E48FF8F6027694BA6593777F542C19E0002A6434D000000"))'
  886. #+END_SRC
  887. * misc
  888. #+begin_src emacs-lisp
  889. (use-package autorevert
  890. :diminish auto-revert-mode)
  891. #+end_src
  892. * orgmode
  893. ** some notes
  894. *** copy file path within emacs
  895. Enter dired-other-window
  896. place cursor on the file
  897. M-0 w (copy absolute path)
  898. C-u w (copy relative path)
  899. *** Archiving
  900. C-c C-x C-a
  901. To keep the subheading structure when archiving, set the properties of the superheading.
  902. #+begin_src org :tangle no
  903. ,* FOO
  904. :PROPERTIES:
  905. :ARCHIVE: %s_archive::* FOO
  906. ,** DONE BAR
  907. ,** TODO BAZ
  908. #+end_src
  909. When moving BAR to archive, it will go to FILENAME.org_archive below the heading FOO.
  910. [[http://doc.endlessparentheses.com/Var/org-archive-location.html][Other examples]]
  911. ** org
  912. This seems necessary to prevent 'org is already installed' error
  913. https://github.com/jwiegley/use-package/issues/319
  914. #+begin_src emacs-lisp
  915. ;(assq-delete-all 'org package--builtins)'
  916. ;(assq-delete-all 'org package--builtin-versions)
  917. #+end_src
  918. #+BEGIN_SRC emacs-lisp
  919. (defun my--buffer-prop-set (name value)
  920. "Set a file property called NAME to VALUE in buffer file.
  921. If the property is already set, replace its value."
  922. (setq name (downcase name))
  923. (org-with-point-at 1
  924. (let ((case-fold-search t))
  925. (if (re-search-forward (concat "^#\\+" name ":\\(.*\\)")
  926. (point-max) t)
  927. (replace-match (concat "#+" name ": " value) 'fixedcase)
  928. (while (and (not (eobp))
  929. (looking-at "^[#:]"))
  930. (if (save-excursion (end-of-line) (eobp))
  931. (progn
  932. (end-of-line)
  933. (insert "\n"))
  934. (forward-line)
  935. (beginning-of-line)))
  936. (insert "#+" name ": " value "\n")))))
  937. (defun my--buffer-prop-remove (name)
  938. "Remove a buffer property called NAME."
  939. (org-with-point-at 1
  940. (when (re-search-forward (concat "\\(^#\\+" name ":.*\n?\\)")
  941. (point-max) t)
  942. (replace-match ""))))
  943. (use-package org
  944. :ensure t
  945. ; :pin gnu
  946. :mode (("\.org$" . org-mode))
  947. :diminish org-indent-mode
  948. :defer 1
  949. :hook
  950. (org-mode . org-indent-mode)
  951. (org-source-mode . smartparens-mode)
  952. :bind (("C-c l" . org-store-link)
  953. ("C-c c" . org-capture)
  954. ("C-c a" . org-agenda)
  955. :map org-mode-map ("S-<right>" . org-shiftright)
  956. ("S-<left>" . org-shiftleft))
  957. :init
  958. (defun my--org-agenda-files-set ()
  959. "Sets default agenda files.
  960. Necessary when updating roam agenda todos."
  961. (setq org-agenda-files (list (concat MY--PATH_ORG_FILES "notes.org")
  962. (concat MY--PATH_ORG_FILES "projects.org")
  963. (concat MY--PATH_ORG_FILES "tasks.org")))
  964. (when *sys/linux*
  965. (nconc org-agenda-files
  966. (directory-files-recursively MY--PATH_ORG_FILES_MOBILE "\\.org$"))))
  967. (my--org-agenda-files-set)
  968. (defun my--org-skip-subtree-if-priority (priority)
  969. "Skip an agenda subtree if it has a priority of PRIORITY.
  970. PRIORITY may be one of the characters ?A, ?B, or ?C."
  971. (let ((subtree-end (save-excursion (org-end-of-subtree t)))
  972. (pri-value (* 1000 (- org-lowest-priority priority)))
  973. (pri-current (org-get-priority (thing-at-point 'line t))))
  974. (if (= pri-value pri-current)
  975. subtree-end
  976. nil)))
  977. :config
  978. (when *work_remote*
  979. (org-add-link-type "outlook" 'my--org-outlook-open)
  980. (setq org-todo-keywords
  981. '((sequence "OPEN" "TODO" "UNCLEAR" "|" "DONE" "IMPOSSIBLE" "CANCELLED")))
  982. (setq org-capture-templates
  983. '(("t" "telephone call" entry
  984. ; (file+olp+datetree (concat MY--PATH_ORG_FILES "phone_calls.org"))
  985. (file+datetree "p:/Eigene Dateien/Notizen/phone_calls.org")
  986. "* [%<%Y-%m-%d %H:%M>] %?"
  987. :empty-lines 0 :jump-to-captured t))))
  988. (when *sys/linux*
  989. (setq org-pretty-entities t))
  990. :custom
  991. (org-startup-truncated t)
  992. (org-startup-align-all-tables t)
  993. (org-src-fontify-natively t) ;; use syntax highlighting in code blocks
  994. (org-src-preserve-indentation t) ;; no extra indentation
  995. (org-src-window-setup 'current-window) ;; C-c ' opens in current window
  996. (org-modules (quote (org-id
  997. org-habit
  998. org-tempo))) ;; easy templates
  999. (org-default-notes-file (concat MY--PATH_ORG_FILES "notes.org"))
  1000. (org-id-locations-file (concat MY--PATH_USER_LOCAL ".org-id-locations"))
  1001. (org-log-into-drawer "LOGBOOK")
  1002. (org-log-done 'time) ;; create timestamp when task is done
  1003. (org-blank-before-new-entry '((heading) (plain-list-item))) ;; prevent new line before new item
  1004. (org-src-tab-acts-natively t)
  1005. ;;Sort agenda by deadline and priority
  1006. (org-agenda-sorting-strategy
  1007. (quote
  1008. ((agenda deadline-up priority-down)
  1009. (todo priority-down category-keep)
  1010. (tags priority-down category-keep)
  1011. (search category-keep))))
  1012. (org-agenda-custom-commands
  1013. '(("c" "Simple agenda view"
  1014. ((tags "PRIORITY=\"A\""
  1015. ((org-agenda-skip-function '(org-agenda-skip-entry-if 'todo 'done))
  1016. (org-agenda-overriding-header "Hohe Priorität:")))
  1017. (agenda ""
  1018. ((org-agenda-skip-function '(org-agenda-skip-entry-if 'todo 'done))
  1019. (org-agenda-span 7)
  1020. (org-agenda-start-on-weekday nil)
  1021. (org-agenda-overriding-header "Nächste 7 Tage:")))
  1022. (alltodo ""
  1023. ((org-agenda-skip-function '(or (my--org-skip-subtree-if-priority ?A)
  1024. (org-agenda-skip-if nil '(scheduled deadline))))
  1025. (org-agenda-overriding-header "Sonstige Aufgaben:"))))))))
  1026. #+END_SRC
  1027. ** COMMENT languages
  1028. Set some languages and disable confirmation for evaluating code blocks C-c C-c
  1029. Elpaca cant find it, though it's built in org
  1030. #+begin_src emacs-lisp
  1031. (use-package ob-python
  1032. ; :ensure nil
  1033. :defer t
  1034. :after org
  1035. ; :ensure org-contrib
  1036. :commands
  1037. (org-babel-execute:python))
  1038. #+end_src
  1039. ** COMMENT habits
  1040. #+BEGIN_SRC emacs-lisp
  1041. (require 'org-habit) ;;TODO Lösung ohne require finden, scheint mir nicht ideal zu sein, nur um ein org-modul zu aktivieren
  1042. ;; (add-to-list 'org-modules "org-habit")
  1043. (setq org-habit-graph-column 80
  1044. org-habit-preceding-days 30
  1045. org-habit-following-days 7
  1046. org-habit-show-habits-only-for-today nil)
  1047. #+END_SRC
  1048. ** *TODO*
  1049. [[https://github.com/nobiot/org-transclusion][org-transclusion]]?
  1050. ** COMMENT journal
  1051. [[https://github.com/bastibe/org-journal][Source]]
  1052. Ggf. durch org-roam-journal ersetzen
  1053. #+BEGIN_SRC emacs-lisp
  1054. (use-package org-journal
  1055. :if *sys/linux*
  1056. :ensure t
  1057. :defer t
  1058. :config
  1059. ;; feels hacky, but this way compiler error "assignment to free variable" disappears
  1060. (when (and (boundp 'org-journal-dir)
  1061. (boundp 'org-journal-enable-agenda-integration))
  1062. (setq org-journal-dir MY--PATH_ORG_JOURNAl
  1063. org-journal-enable-agenda-integration t)))
  1064. #+END_SRC
  1065. ** org-roam
  1066. [[https://github.com/org-roam/org-roam][Github]]
  1067. Um Headings innerhalb einer Datei zu verlinken:
  1068. - org-id-get-create im Heading,
  1069. - org-roam-node-insert in der verweisenden Datei
  1070. Bei Problemen wie unique constraint
  1071. org-roam-db-clear-all
  1072. org-roam-db-sync
  1073. #+BEGIN_SRC emacs-lisp
  1074. (use-package emacsql-sqlite-builtin
  1075. :ensure t)
  1076. (use-package org-roam
  1077. :requires emacsql-sqlite-builtin
  1078. :ensure t
  1079. :defer 2
  1080. :after org
  1081. :init
  1082. (setq org-roam-v2-ack t)
  1083. (defun my--roamtodo-p ()
  1084. "Return non-nil if current buffer has any todo entry.
  1085. TODO entries marked as done are ignored, meaning this function
  1086. returns nil if current buffer contains only completed tasks."
  1087. (seq-find
  1088. (lambda (type)
  1089. (eq type 'todo))
  1090. (org-element-map
  1091. (org-element-parse-buffer 'headline)
  1092. 'headline
  1093. (lambda (h)
  1094. (org-element-property :todo-type h)))))
  1095. (defun my--roamtodo-update-tag ()
  1096. "Update ROAMTODO tag in the current buffer."
  1097. (when (and (not (active-minibuffer-window))
  1098. (my--buffer-roam-note-p))
  1099. (save-excursion
  1100. (goto-char (point-min))
  1101. (let* ((tags (my--buffer-tags-get))
  1102. (original-tags tags))
  1103. (if (my--roamtodo-p)
  1104. (setq tags (cons "roamtodo" tags))
  1105. (setq tags (remove "roamtodo" tags)))
  1106. ;;cleanup duplicates
  1107. (when (or (seq-difference tags original-tags)
  1108. (seq-difference original-tags tags))
  1109. (apply #'my--buffer-tags-set tags))))))
  1110. (defun my--buffer-tags-get ()
  1111. "Return filetags value in current buffer."
  1112. (my--buffer-prop-get-list "filetags" "[ :]"))
  1113. (defun my--buffer-tags-set (&rest tags)
  1114. "Set TAGS in current buffer.
  1115. If filetags value is already set, replace it."
  1116. (if tags
  1117. (my--buffer-prop-set
  1118. "filetags" (concat ":" (string-join tags ":") ":"))
  1119. (my--buffer-prop-remove "filetags")))
  1120. (defun my--buffer-tags-add (tag)
  1121. "Add a TAG to filetags in current buffer."
  1122. (let* ((tags (my--buffer-tags-get))
  1123. (tags (append tags (list tag))))
  1124. (apply #'my--buffer-tags-set tags)))
  1125. (defun my--buffer-tags-remove (tag)
  1126. "Remove a TAG from filetags in current buffer."
  1127. (let* ((tags (my--buffer-tags-get))
  1128. (tags (delete tag tags)))
  1129. (apply #'my--buffer-tags-set tags)))
  1130. (defun my--buffer-prop-set (name value)
  1131. "Set a file property called NAME to VALUE in buffer file.
  1132. If the property is already set, replace its value."
  1133. (setq name (downcase name))
  1134. (org-with-point-at 1
  1135. (let ((case-fold-search t))
  1136. (if (re-search-forward (concat "^#\\+" name ":\\(.*\\)")
  1137. (point-max) t)
  1138. (replace-match (concat "#+" name ": " value) 'fixedcase)
  1139. (while (and (not (eobp))
  1140. (looking-at "^[#:]"))
  1141. (if (save-excursion (end-of-line) (eobp))
  1142. (progn
  1143. (end-of-line)
  1144. (insert "\n"))
  1145. (forward-line)
  1146. (beginning-of-line)))
  1147. (insert "#+" name ": " value "\n")))))
  1148. (defun my--buffer-prop-set-list (name values &optional separators)
  1149. "Set a file property called NAME to VALUES in current buffer.
  1150. VALUES are quoted and combined into single string using
  1151. `combine-and-quote-strings'.
  1152. If SEPARATORS is non-nil, it should be a regular expression
  1153. matching text that separates, but is not part of, the substrings.
  1154. If nil it defaults to `split-string-and-unquote', normally
  1155. \"[ \f\t\n\r\v]+\", and OMIT-NULLS is forced to t.
  1156. If the property is already set, replace its value."
  1157. (my--buffer-prop-set
  1158. name (combine-and-quote-strings values separators)))
  1159. (defun my--buffer-prop-get (name)
  1160. "Get a buffer property called NAME as a string."
  1161. (org-with-point-at 1
  1162. (when (re-search-forward (concat "^#\\+" name ": \\(.*\\)")
  1163. (point-max) t)
  1164. (buffer-substring-no-properties
  1165. (match-beginning 1)
  1166. (match-end 1)))))
  1167. (defun my--buffer-prop-get-list (name &optional separators)
  1168. "Get a buffer property NAME as a list using SEPARATORS.
  1169. If SEPARATORS is non-nil, it should be a regular expression
  1170. matching text that separates, but is not part of, the substrings.
  1171. If nil it defaults to `split-string-default-separators', normally
  1172. \"[ \f\t\n\r\v]+\", and OMIT-NULLS is forced to t."
  1173. (let ((value (my--buffer-prop-get name)))
  1174. (when (and value (not (string-empty-p value)))
  1175. (split-string-and-unquote value separators))))
  1176. (defun my--buffer-prop-remove (name)
  1177. "Remove a buffer property called NAME."
  1178. (org-with-point-at 1
  1179. (when (re-search-forward (concat "\\(^#\\+" name ":.*\n?\\)")
  1180. (point-max) t)
  1181. (replace-match ""))))
  1182. (defun my--buffer-roam-note-p ()
  1183. "Return non-nil if the currently visited buffer is a note."
  1184. (and buffer-file-name
  1185. (string-prefix-p
  1186. (expand-file-name (file-name-as-directory MY--PATH_ORG_ROAM))
  1187. (file-name-directory buffer-file-name))))
  1188. (defun my--org-roam-filter-by-tag (tag-name)
  1189. (lambda (node)
  1190. (member tag-name (org-roam-node-tags node))))
  1191. (defun my--org-roam-list-notes-by-tag (tag-name)
  1192. (mapcar #'org-roam-node-file
  1193. (seq-filter
  1194. (my--org-roam-filter-by-tag tag-name)
  1195. (org-roam-node-list))))
  1196. (defun my/org-roam-refresh-agenda-list ()
  1197. "Add all org roam files with #+filetags: roamtodo"
  1198. (interactive)
  1199. (my--org-agenda-files-set)
  1200. (nconc org-agenda-files
  1201. (my--org-roam-list-notes-by-tag "roamtodo"))
  1202. (setq org-agenda-files (delete-dups org-agenda-files)))
  1203. (add-hook 'find-file-hook #'my--roamtodo-update-tag)
  1204. (add-hook 'before-save-hook #'my--roamtodo-update-tag)
  1205. (advice-add 'org-agenda :before #'my/org-roam-refresh-agenda-list)
  1206. (advice-add 'org-todo-list :before #'my/org-roam-refresh-agenda-list)
  1207. (add-to-list 'org-tags-exclude-from-inheritance "roamtodo")
  1208. :config
  1209. (require 'org-roam-dailies) ;; ensure the keymap is available
  1210. (org-roam-db-autosync-mode)
  1211. ;; build the agenda list the first ime for the session
  1212. (my/org-roam-refresh-agenda-list)
  1213. (when *work_remote*
  1214. (setq org-roam-capture-templates
  1215. '(("n" "note" plain
  1216. "%?"
  1217. :if-new (file+head "notes/%<%Y%m%d%H%M%S>-${slug}.org" "#+title: ${title}\n")
  1218. :unnarrowed t)
  1219. ("i" "idea" plain
  1220. "%?"
  1221. :if-new (file+head "ideas/%<%Y%m%d%H%M%S>-${slug}.org" "#+title: ${title}\n")
  1222. :unnarrowed t)
  1223. ("p" "project" plain
  1224. "%?"
  1225. :target (file+head "projects/${slug}.org" "#+title: ${title}\n#+filetags: :project:\n")
  1226. :unnarrowed t)
  1227. ("s" "Sicherheitenmeldung" plain
  1228. "*** TODO [#A] Sicherheitenmeldung ${title}\n :PROPERTIES:\n :ID: %(org-id-uuid)\n:END:\n%u\n"
  1229. :target (file+olp "tasks.org" ("Todos" "Sicherheitenmeldungen")))
  1230. ("m" "Monatsbericht" plain
  1231. "*** TODO [#A] Monatsbericht ${title}\n :PROPERTIES:\n :ID: %(org-id-uuid)\n:END:\n%u\n"
  1232. :target (file+olp "tasks.org" ("Todos" "Monatsberichte"))))))
  1233. :custom
  1234. (org-roam-database-connector 'sqlite-builtin)
  1235. (org-roam-directory MY--PATH_ORG_ROAM)
  1236. (org-roam-completion-everywhere t)
  1237. (org-roam-capture-templates
  1238. '(("n" "note" plain
  1239. "%?"
  1240. :if-new (file+head "notes/%<%Y%m%d%H%M%S>-${slug}.org" "#+title: ${title}\n")
  1241. :unnarrowed t)
  1242. ("i" "idea" plain
  1243. "%?"
  1244. :if-new (file+head "ideas/%<%Y%m%d%H%M%S>-${slug}.org" "#+title: ${title}\n")
  1245. :unnarrowed t)
  1246. ))
  1247. :bind (("C-c n l" . org-roam-buffer-toggle)
  1248. ("C-c n f" . org-roam-node-find)
  1249. ("C-c n i" . org-roam-node-insert)
  1250. :map org-mode-map
  1251. ("C-M-i" . completion-at-point)
  1252. :map org-roam-dailies-map
  1253. ("Y" . org-roam-dailies-capture-yesterday)
  1254. ("T" . org-roam-dailies-capture-tomorrow))
  1255. :bind-keymap
  1256. ("C-c n d" . org-roam-dailies-map))
  1257. #+END_SRC
  1258. *** TODO Verzeichnis außerhalb roam zum Archivieren (u.a. für erledigte Monatsmeldungen etc.)
  1259. * Programming
  1260. ** Magit / Git
  1261. Little crash course in magit:
  1262. - magit-init to init a git project
  1263. - magit-status (C-x g) to call the status window
  1264. In status buffer:
  1265. - s stage files
  1266. - u unstage files
  1267. - U unstage all files
  1268. - a apply changes to staging
  1269. - c c commit (type commit message, then C-c C-c to commit)
  1270. - b b switch to another branch
  1271. - P u git push
  1272. - F u git pull
  1273. #+BEGIN_SRC emacs-lisp
  1274. ;; updated version needed for magit, at least on windows
  1275. (use-package transient
  1276. :ensure t)
  1277. (use-package magit
  1278. :ensure t
  1279. ; :pin melpa-stable
  1280. :defer t
  1281. :init
  1282. ; set git-path in work environment
  1283. (if (string-equal user-login-name "POH")
  1284. (setq magit-git-executable "P:/Tools/Git/bin/git.exe")
  1285. )
  1286. :bind (("C-x g" . magit-status)))
  1287. #+END_SRC
  1288. ** COMMENT Eglot (can't do dap-mode, maybe dape?)
  1289. for python pyls (in env: pip install python-language-server) seems to work better than pyright (npm install -g pyright),
  1290. at least pandas couldnt be resolved in pyright
  1291. #+begin_src emacs-lisp
  1292. (use-package eglot
  1293. :ensure t
  1294. :init
  1295. (setq completion-category-overrides '((eglot (styles orderless))))
  1296. :config
  1297. (add-to-list 'eglot-server-programs '(python-mode . ("pyright-langserver" "--stdio")))
  1298. (with-eval-after-load 'eglot
  1299. (load-library "project"))
  1300. :hook
  1301. (python-mode . eglot-ensure)
  1302. :custom
  1303. (eglot-ignored-server-capabilities '(:documentHighlightProvider))
  1304. (eglot-autoshutdown t)
  1305. (eglot-events-buffer-size 0)
  1306. )
  1307. ;; performance stuff if necessary
  1308. ;(fset #'jsonrpc--log-event #'ignore)
  1309. #+end_src
  1310. ** LSP-Mode
  1311. #+begin_src emacs-lisp
  1312. (defun corfu-lsp-setup ()
  1313. (setf (alist-get 'styles (alist-get 'lsp-capf completion-category-defaults))
  1314. '(orderless)))
  1315. (use-package lsp-mode
  1316. :ensure t
  1317. ; :hook
  1318. ; ((python-mode . lsp))
  1319. :custom
  1320. (lsp-completion-provider :none)
  1321. (lsp-enable-suggest-server-download nil)
  1322. :hook
  1323. (lsp-completion-mode #'corfu-lsp-setup))
  1324. ;(use-package lsp-ui
  1325. ; :ensure t
  1326. ; :commands lsp-ui-mode)
  1327. (use-package lsp-pyright
  1328. :ensure t
  1329. :after (python lsp-mode)
  1330. :custom
  1331. (lsp-pyright-multi-root nil)
  1332. :hook
  1333. (python-mode-hook . (lambda ()
  1334. (require 'lsp-pyright) (lsp))))
  1335. #+end_src
  1336. ** flymake
  1337. python in venv: pip install pyflake (or ruff?)
  1338. TODO: if ruff active, sideline stops working
  1339. #+begin_src emacs-lisp
  1340. (setq python-flymake-command '("ruff" "--quiet" "--stdin-filename=stdin" "-"))
  1341. #+end_src
  1342. ** sideline
  1343. show flymake errors on the right of code window
  1344. #+begin_src emacs-lisp
  1345. (use-package sideline
  1346. :ensure t)
  1347. (use-package sideline-flymake
  1348. :ensure t
  1349. :requires sideline
  1350. :hook
  1351. (flymake-mode . sideline-mode)
  1352. :init
  1353. (setq sideline-flymake-display-mode 'line ; 'point or 'line
  1354. ; sideline-backends-left '(sideline-lsp)
  1355. sideline-backends-right '(sideline-flymake)))
  1356. #+end_src
  1357. ** yasnippet
  1358. For useful snippet either install yasnippet-snippets or get them from here
  1359. [[https://github.com/AndreaCrotti/yasnippet-snippets][Github]]
  1360. #+begin_src emacs-lisp
  1361. (use-package yasnippet
  1362. :ensure t
  1363. :defer t
  1364. :diminish yas-minor-mode
  1365. :config
  1366. (setq yas-snippet-dirs (list (concat MY--PATH_USER_GLOBAL "snippets")))
  1367. (yas-global-mode t)
  1368. (yas-reload-all)
  1369. (unbind-key "TAB" yas-minor-mode-map)
  1370. (unbind-key "<tab>" yas-minor-mode-map))
  1371. #+end_src
  1372. ** hippie expand
  1373. With hippie expand I am able to use yasnippet and emmet at the same time with the same key.
  1374. #+begin_src emacs-lisp
  1375. (use-package hippie-exp
  1376. :ensure nil
  1377. :defer t
  1378. :bind
  1379. ("C-<return>" . hippie-expand)
  1380. :config
  1381. (setq hippie-expand-try-functions-list
  1382. '(yas-hippie-try-expand emmet-expand-line)))
  1383. #+end_src
  1384. ** COMMENT flycheck (now flymake)
  1385. #+BEGIN_SRC emacs-lisp
  1386. (use-package flycheck
  1387. :ensure t
  1388. :hook
  1389. ((css-mode . flycheck-mode)
  1390. (emacs-lisp-mode . flycheck-mode)
  1391. (python-mode . flycheck-mode))
  1392. :defer 1.0
  1393. :init
  1394. (setq flycheck-emacs-lisp-load-path 'inherit)
  1395. :config
  1396. (setq-default
  1397. flycheck-check-synta-automatically '(save mode-enabled)
  1398. flycheck-disable-checkers '(emacs-lisp-checkdoc)
  1399. eldoc-idle-delay .1 ;; let eldoc echo faster than flycheck
  1400. flycheck-display-errors-delay .3)) ;; this way any errors will override eldoc messages
  1401. #+END_SRC
  1402. ** smartparens
  1403. #+BEGIN_SRC emacs-lisp
  1404. (use-package smartparens
  1405. :ensure t
  1406. :diminish smartparens-mode
  1407. :bind
  1408. (:map smartparens-mode-map
  1409. ("C-M-f" . sp-forward-sexp)
  1410. ("C-M-b" . sp-backward-sexp)
  1411. ("C-M-a" . sp-backward-down-sexp)
  1412. ("C-M-e" . sp-up-sexp)
  1413. ("C-M-w" . sp-copy-sexp)
  1414. ("M-k" . sp-kill-sexp)
  1415. ("C-M-<backspace>" . sp-slice-sexp-killing-backward)
  1416. ("C-S-<backspace>" . sp-slice-sexp-killing-around)
  1417. ("C-]" . sp-select-next-thing-exchange))
  1418. :config
  1419. (setq sp-show-pair-from-inside nil
  1420. sp-escape-quotes-after-insert nil)
  1421. (require 'smartparens-config))
  1422. #+END_SRC
  1423. ** lisp
  1424. #+BEGIN_SRC emacs-lisp
  1425. (use-package elisp-mode
  1426. :ensure nil
  1427. :defer t)
  1428. #+END_SRC
  1429. ** web
  1430. apt install npm
  1431. sudo npm install -g vscode-html-languageserver-bin
  1432. evtl alternativ typescript-language-server?
  1433. Unter Windows:
  1434. Hier runterladen: https://nodejs.org/dist/latest/
  1435. und in ein Verzeichnis entpacken.
  1436. Optional: PATH erweitern unter Windows (so kann exec-path-from-shell den Pfad ermitteln):
  1437. PATH=P:\path\to\node;%path%
  1438. *** web-mode
  1439. #+BEGIN_SRC emacs-lisp
  1440. (use-package web-mode
  1441. :ensure t
  1442. :defer t
  1443. :mode
  1444. ("\\.phtml\\'"
  1445. "\\.tpl\\.php\\'"
  1446. "\\.djhtml\\'"
  1447. "\\.[t]?html?\\'")
  1448. :hook
  1449. (web-mode . smartparens-mode)
  1450. :init
  1451. (if *work_remote*
  1452. (setq exec-path (append exec-path '("P:/Tools/node"))))
  1453. :config
  1454. (setq web-mode-enable-auto-closing t
  1455. web-mode-enable-auto-pairing t))
  1456. #+END_SRC
  1457. Emmet offers snippets, similar to yasnippet.
  1458. Default completion is C-j
  1459. [[https://github.com/smihica/emmet-mode#usage][Github]]
  1460. #+begin_src emacs-lisp
  1461. (use-package emmet-mode
  1462. :ensure t
  1463. :defer t
  1464. :hook
  1465. ((web-mode . emmet-mode)
  1466. (css-mode . emmet-mode))
  1467. :config
  1468. (unbind-key "C-<return>" emmet-mode-keymap))
  1469. #+end_src
  1470. *** JavaScript
  1471. npm install -g typescript-language-server typescript
  1472. maybe only typescript?
  1473. npm install -g prettier
  1474. #+begin_src emacs-lisp
  1475. (use-package rjsx-mode
  1476. :ensure t
  1477. :mode ("\\.js\\'"
  1478. "\\.jsx'"))
  1479. ; :config
  1480. ; (setq js2-mode-show-parse-errors nil
  1481. ; js2-mode-show-strict-warnings nil
  1482. ; js2-basic-offset 2
  1483. ; js-indent-level 2)
  1484. ; (setq-local flycheck-disabled-checkers (cl-union flycheck-disable-checkers
  1485. ; '(javascript-jshint)))) ; jshint doesn"t work for JSX
  1486. (use-package tide
  1487. :ensure t
  1488. :after (rjsx-mode company flycheck)
  1489. ; :hook (rjsx-mode . setup-tide-mode)
  1490. :config
  1491. (defun setup-tide-mode ()
  1492. "Setup function for tide."
  1493. (interactive)
  1494. (tide-setup)
  1495. (flycheck-mode t)
  1496. (setq flycheck-check-synta-automatically '(save mode-enabled))
  1497. (tide-hl-identifier-mode t)))
  1498. ;; needs npm install -g prettier
  1499. (use-package prettier-js
  1500. :ensure t
  1501. :after (rjsx-mode)
  1502. :defer t
  1503. :diminish prettier-js-mode
  1504. :hook ((js2-mode rsjx-mode) . prettier-js-mode))
  1505. #+end_src
  1506. ** YAML
  1507. #+begin_src emacs-lisp
  1508. (use-package yaml-mode
  1509. :if *sys/linux*
  1510. :ensure t
  1511. :defer t
  1512. :mode ("\\.yml$" . yaml-mode))
  1513. #+end_src
  1514. ** R
  1515. #+BEGIN_SRC emacs-lisp
  1516. (use-package ess
  1517. :ensure t
  1518. :defer t
  1519. :init
  1520. (if *work_remote*
  1521. (setq exec-path (append exec-path '("P:/Tools/R/bin/x64"))
  1522. org-babel-R-command "P:/Tools/R/bin/x64/R --slave --no-save")))
  1523. #+END_SRC
  1524. ** project.el
  1525. #+begin_src emacs-lisp
  1526. (use-package project
  1527. :custom
  1528. (project-vc-extra-root-markers '(".project.el" ".project" )))
  1529. #+end_src
  1530. ** Python
  1531. Preparations:
  1532. - Install language server in *each* projects venv
  1533. source ./bin/activate
  1534. pip install pyright
  1535. - in project root:
  1536. touch .project.el
  1537. echo "((nil . (pyvenv-activate . "/path/to/project/.env")))" >> .dir-locals.el
  1538. für andere language servers
  1539. https://github.com/emacs-lsp/lsp-mode#install-language-server
  1540. TODO if in a project, set venv automatically
  1541. (when-let ((project (project-current))) (project-root project))
  1542. returns project path from project.el
  1543. to recognize a project, either have git or
  1544. place a .project.el file in project root and
  1545. (setq project-vc-extra-root-markers '(".project.el" "..." ))
  1546. #+begin_src emacs-lisp
  1547. (use-package python
  1548. :if *sys/linux*
  1549. :delight "π "
  1550. :defer t
  1551. :bind (("M-[" . python-nav-backward-block)
  1552. ("M-]" . python-nav-forward-block))
  1553. :mode
  1554. (("\\.py\\'" . python-mode)))
  1555. (use-package pyvenv
  1556. ; :if *sys/linux*
  1557. :ensure t
  1558. :defer t
  1559. :after python
  1560. :hook
  1561. (python-mode . pyvenv-mode)
  1562. :custom
  1563. (pyvenv-default-virtual-env-name ".env")
  1564. (pyvenv-mode-line-indicator '(pyvenv-virtual-env-name ("[venv:" pyvenv-virtual-env-name "]"))))
  1565. ;; formatting to pep8
  1566. ;; requires pip install black
  1567. ;(use-package blacken
  1568. ; :ensure t)
  1569. #+end_src
  1570. TODO python mode hook:
  1571. - activate venv
  1572. - activate eglot with proper ls
  1573. - activate tree-sitter?
  1574. - have some fallback if activations fail
  1575. * beancount
  1576. ** Installation
  1577. #+BEGIN_SRC shell :tangle no
  1578. sudo su
  1579. cd /opt
  1580. python3 -m venv beancount
  1581. source ./beancount/bin/activate
  1582. pip3 install wheel
  1583. pip3 install beancount
  1584. sleep 100
  1585. echo "shell running!"
  1586. deactivate
  1587. #+END_SRC
  1588. #+begin_src emacs-lisp
  1589. (use-package beancount
  1590. :ensure nil
  1591. :if *sys/linux*
  1592. :load-path "user-global/elisp/"
  1593. ; :ensure t
  1594. :defer t
  1595. :mode
  1596. ("\\.beancount$" . beancount-mode)
  1597. :hook
  1598. (beancount-mode . my/beancount-company)
  1599. :config
  1600. (defun my/beancount-company ()
  1601. (setq-local completion-at-point-functions #'beancount-completion-at-point))
  1602. (setq beancount-filename-main "/home/marc/Archiv/Finanzen/Transaktionen/transactions.beancount"))
  1603. #+end_src
  1604. +BEGIN_SRC emacs-lisp
  1605. (use-package beancount
  1606. :if *sys/linux*
  1607. :load-path "user-global/elisp"
  1608. ; :ensure t
  1609. :defer t
  1610. :mode
  1611. ("\\.beancount$" . beancount-mode)
  1612. ; :hook
  1613. ; (beancount-mode . my/beancount-company)
  1614. ; :init
  1615. ; (add-hook 'beancount-mode-hook 'company/beancount-mode-hook)
  1616. :config
  1617. (defun my/beancount-company ()
  1618. (setq-local completion-at-point-functions #'beancount-complete-at-point nil t))
  1619. ; (mapcar #'cape-company-to-capf
  1620. ; (list #'company-beancount #'company-dabbrev))))
  1621. (defun my--beancount-companyALT ()
  1622. (set (make-local-variable 'company-backends)
  1623. '(company-beancount)))
  1624. (setq beancount-filename-main "/home/marc/Archiv/Finanzen/Transaktionen/transactions.beancount"))
  1625. +END_SRC
  1626. To support org-babel, check if it can find the symlink to ob-beancount.el
  1627. #+BEGIN_SRC shell :tangle no
  1628. orgpath=`find /home/marc/.emacs.d/elpa/ -type d -name "org-plus*" -print`
  1629. beansym="$orgpath/ob-beancount.el
  1630. bean="/home/marc/Archiv/Programmierprojekte/Lisp/beancount-mode/ob-beancount.el"
  1631. if [ -h "$beansym" ]
  1632. then
  1633. echo "$beansym found"
  1634. elif [ -e "$bean" ]
  1635. then
  1636. echo "creating symlink"
  1637. ln -s "$bean" "$beansym"
  1638. else
  1639. echo "$bean not found, symlink creation aborted"
  1640. fi
  1641. #+END_SRC
  1642. Fava is strongly recommended.
  1643. #+BEGIN_SRC shell :tangle no
  1644. cd /opt
  1645. python3 -m venv fava
  1646. source ./fava/bin/activate
  1647. pip3 install wheel
  1648. pip3 install fava
  1649. deactivate
  1650. #+END_SRC
  1651. Start fava with fava my_file.beancount
  1652. It is accessable on this URL: [[http://127.0.0.1:5000][Fava]]
  1653. Beancount-mode can start fava and open the URL right away.
  1654. * Stuff after everything else
  1655. Set garbage collector to a smaller value to let it kick in faster.
  1656. Maybe a problem on Windows?
  1657. #+begin_src emacs-lisp
  1658. ;(setq gc-cons-threshold (* 2 1000 1000))
  1659. #+end_src
  1660. Rest of early-init.el
  1661. #+begin_src emacs-lisp :tangle early-init.el
  1662. (defconst config-org (expand-file-name "config.org" user-emacs-directory))
  1663. (defconst init-el (expand-file-name "init.el" user-emacs-directory))
  1664. (unless (file-exists-p init-el)
  1665. (require 'org)
  1666. (org-babel-tangle-file config-org init-el))
  1667. #+end_src