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.

1894 lines
58 KiB

5 years ago
1 year ago
3 years ago
3 years ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
6 years ago
6 months ago
5 months ago
5 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
1 year ago
4 months ago
4 months ago
7 months ago
7 months ago
7 months ago
6 years ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
1 year ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
6 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
1 year ago
7 months ago
7 months ago
1 year ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
6 years ago
7 months ago
7 months ago
7 months ago
6 years ago
7 months ago
6 years ago
6 years ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 months ago
7 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. * Emails
  859. Requires on system
  860. - isync to sync emails between host and local
  861. - notmuch to index emails
  862. - mu4e (if using mu4e)
  863. #+begin_src emacs-lisp
  864. ;(use-package notmuch
  865. ; :ensure t)
  866. (use-package mu4e
  867. :ensure nil
  868. :after (org))
  869. #+end_src
  870. * COMMENT mu4e
  871. #+begin_src emacs-lisp
  872. ;;https://github.com/progfolio/.emacs.d#mu4e
  873. (use-package mu4e
  874. :ensure `(mu4e :host github :files ("mu4e/*.el" "build/mu4e/mu4e-meta.el" "build/mu4e/mu4e-config.el" "build/mu4e/mu4e.info") :repo "djcb/mu"
  875. :main "mu4e/mu4e.el"
  876. :pre-build (("./autogen.sh" "-Dtests=disabled")
  877. ("ninja" "-C" "build")
  878. (make-symbolic-link (expand-file-name "./build/mu/mu")
  879. (expand-file-name "~/bin/mu") 'ok-if-exists))
  880. :build (:not elpaca--compile-info)
  881. :post-build (("mu" "init" "--quiet" "--maildir" ,(concat (getenv "HOME") "/Documents/emails")
  882. ; "--my-address=" ,secret-personal-email-address
  883. ; "--my-address=" ,secret-work-email-address)
  884. ; "--my-address=" ,secret-personal-email-address
  885. "--my-address=marc.pohling@mail.de")
  886. ("mu" "--quiet" "index")))
  887. :commands (mu4e mu4e-update-index))
  888. #+end_src
  889. * outlook
  890. In outlook a macro is necessary, also a reference to FM20.DLL
  891. (Microsoft Forms 2.0 Object Library, in c:\windows\syswow64\fm20.dll)
  892. The macro copies the GUID of the email to the clipboard
  893. Attention: the GUID changes when the email is moved to another folder!
  894. The macro:
  895. #+BEGIN_SRC
  896. Sub AddLinkToMessageInClipboard()
  897. 'Adds a link to the currently selected message to the clipboard
  898. Dim objMail As Outlook.MailItem
  899. Dim doClipboard As New DataObject
  900. 'One and ONLY one message muse be selected
  901. If Application.ActiveExplorer.Selection.Count <> 1 Then
  902. MsgBox ("Select one and ONLY one message.")
  903. Exit Sub
  904. End If
  905. Set objMail = Application.ActiveExplorer.Selection.Item(1)
  906. doClipboard.SetText "[[outlook:" + objMail.EntryID + "][MESSAGE: " + objMail.Subject + " (" + objMail.SenderName + ")]]"
  907. doClipboard.PutInClipboard
  908. End Sub
  909. #+END_SRC
  910. #+BEGIN_SRC emacs-lisp
  911. ;(org-add-link-type "outlook" 'my--org-outlook-open)
  912. (defun my--org-outlook-open (id)
  913. (w32-shell-execute "open" "outlook" (concat " /select outlook:" id)))
  914. (defun my/org-outlook-open-test ()
  915. (interactive)
  916. (w32-shell-execute "open" "outlook" " /select outlook:000000008A209C397CEF2C4FBA9E54AEB5B1F97F0700846D043B407C5B43A0C05AFC46DC5C630587BE5E020900006E48FF8F6027694BA6593777F542C19E0002A6434D000000"))'
  917. #+END_SRC
  918. * misc
  919. #+begin_src emacs-lisp
  920. (use-package autorevert
  921. :diminish auto-revert-mode)
  922. #+end_src
  923. * orgmode
  924. ** some notes
  925. *** copy file path within emacs
  926. Enter dired-other-window
  927. place cursor on the file
  928. M-0 w (copy absolute path)
  929. C-u w (copy relative path)
  930. *** Archiving
  931. C-c C-x C-a
  932. To keep the subheading structure when archiving, set the properties of the superheading.
  933. #+begin_src org :tangle no
  934. ,* FOO
  935. :PROPERTIES:
  936. :ARCHIVE: %s_archive::* FOO
  937. ,** DONE BAR
  938. ,** TODO BAZ
  939. #+end_src
  940. When moving BAR to archive, it will go to FILENAME.org_archive below the heading FOO.
  941. [[http://doc.endlessparentheses.com/Var/org-archive-location.html][Other examples]]
  942. ** org
  943. This seems necessary to prevent 'org is already installed' error
  944. https://github.com/jwiegley/use-package/issues/319
  945. #+begin_src emacs-lisp
  946. ;(assq-delete-all 'org package--builtins)'
  947. ;(assq-delete-all 'org package--builtin-versions)
  948. #+end_src
  949. #+BEGIN_SRC emacs-lisp
  950. (defun my--buffer-prop-set (name value)
  951. "Set a file property called NAME to VALUE in buffer file.
  952. If the property is already set, replace its value."
  953. (setq name (downcase name))
  954. (org-with-point-at 1
  955. (let ((case-fold-search t))
  956. (if (re-search-forward (concat "^#\\+" name ":\\(.*\\)")
  957. (point-max) t)
  958. (replace-match (concat "#+" name ": " value) 'fixedcase)
  959. (while (and (not (eobp))
  960. (looking-at "^[#:]"))
  961. (if (save-excursion (end-of-line) (eobp))
  962. (progn
  963. (end-of-line)
  964. (insert "\n"))
  965. (forward-line)
  966. (beginning-of-line)))
  967. (insert "#+" name ": " value "\n")))))
  968. (defun my--buffer-prop-remove (name)
  969. "Remove a buffer property called NAME."
  970. (org-with-point-at 1
  971. (when (re-search-forward (concat "\\(^#\\+" name ":.*\n?\\)")
  972. (point-max) t)
  973. (replace-match ""))))
  974. (use-package org
  975. :ensure t
  976. ; :pin gnu
  977. :mode (("\.org$" . org-mode))
  978. :diminish org-indent-mode
  979. :defer 1
  980. :hook
  981. (org-mode . org-indent-mode)
  982. (org-source-mode . smartparens-mode)
  983. :bind (("C-c l" . org-store-link)
  984. ("C-c c" . org-capture)
  985. ("C-c a" . org-agenda)
  986. :map org-mode-map ("S-<right>" . org-shiftright)
  987. ("S-<left>" . org-shiftleft))
  988. :init
  989. (defun my--org-agenda-files-set ()
  990. "Sets default agenda files.
  991. Necessary when updating roam agenda todos."
  992. (setq org-agenda-files (list (concat MY--PATH_ORG_FILES "notes.org")
  993. (concat MY--PATH_ORG_FILES "projects.org")
  994. (concat MY--PATH_ORG_FILES "tasks.org")))
  995. (when *sys/linux*
  996. (nconc org-agenda-files
  997. (directory-files-recursively MY--PATH_ORG_FILES_MOBILE "\\.org$"))))
  998. (my--org-agenda-files-set)
  999. (defun my--org-skip-subtree-if-priority (priority)
  1000. "Skip an agenda subtree if it has a priority of PRIORITY.
  1001. PRIORITY may be one of the characters ?A, ?B, or ?C."
  1002. (let ((subtree-end (save-excursion (org-end-of-subtree t)))
  1003. (pri-value (* 1000 (- org-lowest-priority priority)))
  1004. (pri-current (org-get-priority (thing-at-point 'line t))))
  1005. (if (= pri-value pri-current)
  1006. subtree-end
  1007. nil)))
  1008. :config
  1009. (when *work_remote*
  1010. (org-add-link-type "outlook" 'my--org-outlook-open)
  1011. (setq org-todo-keywords
  1012. '((sequence "OPEN" "TODO" "UNCLEAR" "|" "DONE" "IMPOSSIBLE" "CANCELLED")))
  1013. (setq org-capture-templates
  1014. '(("t" "telephone call" entry
  1015. ; (file+olp+datetree (concat MY--PATH_ORG_FILES "phone_calls.org"))
  1016. (file+datetree "p:/Eigene Dateien/Notizen/phone_calls.org")
  1017. "* [%<%Y-%m-%d %H:%M>] %?"
  1018. :empty-lines 0 :jump-to-captured t))))
  1019. (when *sys/linux*
  1020. (setq org-pretty-entities t))
  1021. :custom
  1022. (org-startup-truncated t)
  1023. (org-startup-align-all-tables t)
  1024. (org-src-fontify-natively t) ;; use syntax highlighting in code blocks
  1025. (org-src-preserve-indentation t) ;; no extra indentation
  1026. (org-src-window-setup 'current-window) ;; C-c ' opens in current window
  1027. (org-modules (quote (org-id
  1028. org-habit
  1029. org-tempo))) ;; easy templates
  1030. (org-default-notes-file (concat MY--PATH_ORG_FILES "notes.org"))
  1031. (org-id-locations-file (concat MY--PATH_USER_LOCAL ".org-id-locations"))
  1032. (org-log-into-drawer "LOGBOOK")
  1033. (org-log-done 'time) ;; create timestamp when task is done
  1034. (org-blank-before-new-entry '((heading) (plain-list-item))) ;; prevent new line before new item
  1035. (org-src-tab-acts-natively t)
  1036. ;;Sort agenda by deadline and priority
  1037. (org-agenda-sorting-strategy
  1038. (quote
  1039. ((agenda deadline-up priority-down)
  1040. (todo priority-down category-keep)
  1041. (tags priority-down category-keep)
  1042. (search category-keep))))
  1043. (org-agenda-custom-commands
  1044. '(("c" "Simple agenda view"
  1045. ((tags "PRIORITY=\"A\""
  1046. ((org-agenda-skip-function '(org-agenda-skip-entry-if 'todo 'done))
  1047. (org-agenda-overriding-header "Hohe Priorität:")))
  1048. (agenda ""
  1049. ((org-agenda-skip-function '(org-agenda-skip-entry-if 'todo 'done))
  1050. (org-agenda-span 7)
  1051. (org-agenda-start-on-weekday nil)
  1052. (org-agenda-overriding-header "Nächste 7 Tage:")))
  1053. (alltodo ""
  1054. ((org-agenda-skip-function '(or (my--org-skip-subtree-if-priority ?A)
  1055. (org-agenda-skip-if nil '(scheduled deadline))))
  1056. (org-agenda-overriding-header "Sonstige Aufgaben:"))))))))
  1057. #+END_SRC
  1058. ** COMMENT languages
  1059. Set some languages and disable confirmation for evaluating code blocks C-c C-c
  1060. Elpaca cant find it, though it's built in org
  1061. #+begin_src emacs-lisp
  1062. (use-package ob-python
  1063. ; :ensure nil
  1064. :defer t
  1065. :after org
  1066. ; :ensure org-contrib
  1067. :commands
  1068. (org-babel-execute:python))
  1069. #+end_src
  1070. ** COMMENT habits
  1071. #+BEGIN_SRC emacs-lisp
  1072. (require 'org-habit) ;;TODO Lösung ohne require finden, scheint mir nicht ideal zu sein, nur um ein org-modul zu aktivieren
  1073. ;; (add-to-list 'org-modules "org-habit")
  1074. (setq org-habit-graph-column 80
  1075. org-habit-preceding-days 30
  1076. org-habit-following-days 7
  1077. org-habit-show-habits-only-for-today nil)
  1078. #+END_SRC
  1079. ** *TODO*
  1080. [[https://github.com/nobiot/org-transclusion][org-transclusion]]?
  1081. ** COMMENT journal
  1082. [[https://github.com/bastibe/org-journal][Source]]
  1083. Ggf. durch org-roam-journal ersetzen
  1084. #+BEGIN_SRC emacs-lisp
  1085. (use-package org-journal
  1086. :if *sys/linux*
  1087. :ensure t
  1088. :defer t
  1089. :config
  1090. ;; feels hacky, but this way compiler error "assignment to free variable" disappears
  1091. (when (and (boundp 'org-journal-dir)
  1092. (boundp 'org-journal-enable-agenda-integration))
  1093. (setq org-journal-dir MY--PATH_ORG_JOURNAl
  1094. org-journal-enable-agenda-integration t)))
  1095. #+END_SRC
  1096. ** org-roam
  1097. [[https://github.com/org-roam/org-roam][Github]]
  1098. Um Headings innerhalb einer Datei zu verlinken:
  1099. - org-id-get-create im Heading,
  1100. - org-roam-node-insert in der verweisenden Datei
  1101. Bei Problemen wie unique constraint
  1102. org-roam-db-clear-all
  1103. org-roam-db-sync
  1104. #+BEGIN_SRC emacs-lisp
  1105. (use-package emacsql-sqlite-builtin
  1106. :ensure t)
  1107. (use-package org-roam
  1108. :requires emacsql-sqlite-builtin
  1109. :ensure t
  1110. :defer 2
  1111. :after org
  1112. :init
  1113. (setq org-roam-v2-ack t)
  1114. (defun my--roamtodo-p ()
  1115. "Return non-nil if current buffer has any todo entry.
  1116. TODO entries marked as done are ignored, meaning this function
  1117. returns nil if current buffer contains only completed tasks."
  1118. (seq-find
  1119. (lambda (type)
  1120. (eq type 'todo))
  1121. (org-element-map
  1122. (org-element-parse-buffer 'headline)
  1123. 'headline
  1124. (lambda (h)
  1125. (org-element-property :todo-type h)))))
  1126. (defun my--roamtodo-update-tag ()
  1127. "Update ROAMTODO tag in the current buffer."
  1128. (when (and (not (active-minibuffer-window))
  1129. (my--buffer-roam-note-p))
  1130. (save-excursion
  1131. (goto-char (point-min))
  1132. (let* ((tags (my--buffer-tags-get))
  1133. (original-tags tags))
  1134. (if (my--roamtodo-p)
  1135. (setq tags (cons "roamtodo" tags))
  1136. (setq tags (remove "roamtodo" tags)))
  1137. ;;cleanup duplicates
  1138. (when (or (seq-difference tags original-tags)
  1139. (seq-difference original-tags tags))
  1140. (apply #'my--buffer-tags-set tags))))))
  1141. (defun my--buffer-tags-get ()
  1142. "Return filetags value in current buffer."
  1143. (my--buffer-prop-get-list "filetags" "[ :]"))
  1144. (defun my--buffer-tags-set (&rest tags)
  1145. "Set TAGS in current buffer.
  1146. If filetags value is already set, replace it."
  1147. (if tags
  1148. (my--buffer-prop-set
  1149. "filetags" (concat ":" (string-join tags ":") ":"))
  1150. (my--buffer-prop-remove "filetags")))
  1151. (defun my--buffer-tags-add (tag)
  1152. "Add a TAG to filetags in current buffer."
  1153. (let* ((tags (my--buffer-tags-get))
  1154. (tags (append tags (list tag))))
  1155. (apply #'my--buffer-tags-set tags)))
  1156. (defun my--buffer-tags-remove (tag)
  1157. "Remove a TAG from filetags in current buffer."
  1158. (let* ((tags (my--buffer-tags-get))
  1159. (tags (delete tag tags)))
  1160. (apply #'my--buffer-tags-set tags)))
  1161. (defun my--buffer-prop-set (name value)
  1162. "Set a file property called NAME to VALUE in buffer file.
  1163. If the property is already set, replace its value."
  1164. (setq name (downcase name))
  1165. (org-with-point-at 1
  1166. (let ((case-fold-search t))
  1167. (if (re-search-forward (concat "^#\\+" name ":\\(.*\\)")
  1168. (point-max) t)
  1169. (replace-match (concat "#+" name ": " value) 'fixedcase)
  1170. (while (and (not (eobp))
  1171. (looking-at "^[#:]"))
  1172. (if (save-excursion (end-of-line) (eobp))
  1173. (progn
  1174. (end-of-line)
  1175. (insert "\n"))
  1176. (forward-line)
  1177. (beginning-of-line)))
  1178. (insert "#+" name ": " value "\n")))))
  1179. (defun my--buffer-prop-set-list (name values &optional separators)
  1180. "Set a file property called NAME to VALUES in current buffer.
  1181. VALUES are quoted and combined into single string using
  1182. `combine-and-quote-strings'.
  1183. If SEPARATORS is non-nil, it should be a regular expression
  1184. matching text that separates, but is not part of, the substrings.
  1185. If nil it defaults to `split-string-and-unquote', normally
  1186. \"[ \f\t\n\r\v]+\", and OMIT-NULLS is forced to t.
  1187. If the property is already set, replace its value."
  1188. (my--buffer-prop-set
  1189. name (combine-and-quote-strings values separators)))
  1190. (defun my--buffer-prop-get (name)
  1191. "Get a buffer property called NAME as a string."
  1192. (org-with-point-at 1
  1193. (when (re-search-forward (concat "^#\\+" name ": \\(.*\\)")
  1194. (point-max) t)
  1195. (buffer-substring-no-properties
  1196. (match-beginning 1)
  1197. (match-end 1)))))
  1198. (defun my--buffer-prop-get-list (name &optional separators)
  1199. "Get a buffer property NAME as a list using SEPARATORS.
  1200. If SEPARATORS is non-nil, it should be a regular expression
  1201. matching text that separates, but is not part of, the substrings.
  1202. If nil it defaults to `split-string-default-separators', normally
  1203. \"[ \f\t\n\r\v]+\", and OMIT-NULLS is forced to t."
  1204. (let ((value (my--buffer-prop-get name)))
  1205. (when (and value (not (string-empty-p value)))
  1206. (split-string-and-unquote value separators))))
  1207. (defun my--buffer-prop-remove (name)
  1208. "Remove a buffer property called NAME."
  1209. (org-with-point-at 1
  1210. (when (re-search-forward (concat "\\(^#\\+" name ":.*\n?\\)")
  1211. (point-max) t)
  1212. (replace-match ""))))
  1213. (defun my--buffer-roam-note-p ()
  1214. "Return non-nil if the currently visited buffer is a note."
  1215. (and buffer-file-name
  1216. (string-prefix-p
  1217. (expand-file-name (file-name-as-directory MY--PATH_ORG_ROAM))
  1218. (file-name-directory buffer-file-name))))
  1219. (defun my--org-roam-filter-by-tag (tag-name)
  1220. (lambda (node)
  1221. (member tag-name (org-roam-node-tags node))))
  1222. (defun my--org-roam-list-notes-by-tag (tag-name)
  1223. (mapcar #'org-roam-node-file
  1224. (seq-filter
  1225. (my--org-roam-filter-by-tag tag-name)
  1226. (org-roam-node-list))))
  1227. (defun my/org-roam-refresh-agenda-list ()
  1228. "Add all org roam files with #+filetags: roamtodo"
  1229. (interactive)
  1230. (my--org-agenda-files-set)
  1231. (nconc org-agenda-files
  1232. (my--org-roam-list-notes-by-tag "roamtodo"))
  1233. (setq org-agenda-files (delete-dups org-agenda-files)))
  1234. (add-hook 'find-file-hook #'my--roamtodo-update-tag)
  1235. (add-hook 'before-save-hook #'my--roamtodo-update-tag)
  1236. (advice-add 'org-agenda :before #'my/org-roam-refresh-agenda-list)
  1237. (advice-add 'org-todo-list :before #'my/org-roam-refresh-agenda-list)
  1238. (add-to-list 'org-tags-exclude-from-inheritance "roamtodo")
  1239. :config
  1240. (require 'org-roam-dailies) ;; ensure the keymap is available
  1241. (org-roam-db-autosync-mode)
  1242. ;; build the agenda list the first ime for the session
  1243. (my/org-roam-refresh-agenda-list)
  1244. (when *work_remote*
  1245. (setq org-roam-capture-templates
  1246. '(("n" "note" plain
  1247. "%?"
  1248. :if-new (file+head "notes/%<%Y%m%d%H%M%S>-${slug}.org" "#+title: ${title}\n")
  1249. :unnarrowed t)
  1250. ("i" "idea" plain
  1251. "%?"
  1252. :if-new (file+head "ideas/%<%Y%m%d%H%M%S>-${slug}.org" "#+title: ${title}\n")
  1253. :unnarrowed t)
  1254. ("p" "project" plain
  1255. "%?"
  1256. :target (file+head "projects/${slug}.org" "#+title: ${title}\n#+filetags: :project:\n")
  1257. :unnarrowed t)
  1258. ("s" "Sicherheitenmeldung" plain
  1259. "*** TODO [#A] Sicherheitenmeldung ${title}\n :PROPERTIES:\n :ID: %(org-id-uuid)\n:END:\n%u\n"
  1260. :target (file+olp "tasks.org" ("Todos" "Sicherheitenmeldungen")))
  1261. ("m" "Monatsbericht" plain
  1262. "*** TODO [#A] Monatsbericht ${title}\n :PROPERTIES:\n :ID: %(org-id-uuid)\n:END:\n%u\n"
  1263. :target (file+olp "tasks.org" ("Todos" "Monatsberichte"))))))
  1264. :custom
  1265. (org-roam-database-connector 'sqlite-builtin)
  1266. (org-roam-directory MY--PATH_ORG_ROAM)
  1267. (org-roam-completion-everywhere t)
  1268. (org-roam-capture-templates
  1269. '(("n" "note" plain
  1270. "%?"
  1271. :if-new (file+head "notes/%<%Y%m%d%H%M%S>-${slug}.org" "#+title: ${title}\n")
  1272. :unnarrowed t)
  1273. ("i" "idea" plain
  1274. "%?"
  1275. :if-new (file+head "ideas/%<%Y%m%d%H%M%S>-${slug}.org" "#+title: ${title}\n")
  1276. :unnarrowed t)
  1277. ))
  1278. :bind (("C-c n l" . org-roam-buffer-toggle)
  1279. ("C-c n f" . org-roam-node-find)
  1280. ("C-c n i" . org-roam-node-insert)
  1281. :map org-mode-map
  1282. ("C-M-i" . completion-at-point)
  1283. :map org-roam-dailies-map
  1284. ("Y" . org-roam-dailies-capture-yesterday)
  1285. ("T" . org-roam-dailies-capture-tomorrow))
  1286. :bind-keymap
  1287. ("C-c n d" . org-roam-dailies-map))
  1288. #+END_SRC
  1289. *** TODO Verzeichnis außerhalb roam zum Archivieren (u.a. für erledigte Monatsmeldungen etc.)
  1290. * Programming
  1291. ** Magit / Git
  1292. Little crash course in magit:
  1293. - magit-init to init a git project
  1294. - magit-status (C-x g) to call the status window
  1295. In status buffer:
  1296. - s stage files
  1297. - u unstage files
  1298. - U unstage all files
  1299. - a apply changes to staging
  1300. - c c commit (type commit message, then C-c C-c to commit)
  1301. - b b switch to another branch
  1302. - P u git push
  1303. - F u git pull
  1304. #+BEGIN_SRC emacs-lisp
  1305. ;; updated version needed for magit, at least on windows
  1306. (use-package transient
  1307. :ensure t)
  1308. (use-package magit
  1309. :ensure t
  1310. ; :pin melpa-stable
  1311. :defer t
  1312. :init
  1313. ; set git-path in work environment
  1314. (if (string-equal user-login-name "POH")
  1315. (setq magit-git-executable "P:/Tools/Git/bin/git.exe")
  1316. )
  1317. :bind (("C-x g" . magit-status)))
  1318. #+END_SRC
  1319. ** COMMENT Eglot (can't do dap-mode, maybe dape?)
  1320. for python pyls (in env: pip install python-language-server) seems to work better than pyright (npm install -g pyright),
  1321. at least pandas couldnt be resolved in pyright
  1322. #+begin_src emacs-lisp
  1323. (use-package eglot
  1324. :ensure t
  1325. :init
  1326. (setq completion-category-overrides '((eglot (styles orderless))))
  1327. :config
  1328. (add-to-list 'eglot-server-programs '(python-mode . ("pyright-langserver" "--stdio")))
  1329. (with-eval-after-load 'eglot
  1330. (load-library "project"))
  1331. :hook
  1332. (python-mode . eglot-ensure)
  1333. :custom
  1334. (eglot-ignored-server-capabilities '(:documentHighlightProvider))
  1335. (eglot-autoshutdown t)
  1336. (eglot-events-buffer-size 0)
  1337. )
  1338. ;; performance stuff if necessary
  1339. ;(fset #'jsonrpc--log-event #'ignore)
  1340. #+end_src
  1341. ** LSP-Mode
  1342. #+begin_src emacs-lisp
  1343. (defun corfu-lsp-setup ()
  1344. (setf (alist-get 'styles (alist-get 'lsp-capf completion-category-defaults))
  1345. '(orderless)))
  1346. (use-package lsp-mode
  1347. :ensure t
  1348. ; :hook
  1349. ; ((python-mode . lsp))
  1350. :custom
  1351. (lsp-completion-provider :none)
  1352. (lsp-enable-suggest-server-download nil)
  1353. :hook
  1354. (lsp-completion-mode #'corfu-lsp-setup))
  1355. ;(use-package lsp-ui
  1356. ; :ensure t
  1357. ; :commands lsp-ui-mode)
  1358. (use-package lsp-pyright
  1359. :ensure t
  1360. :after (python lsp-mode)
  1361. :custom
  1362. (lsp-pyright-multi-root nil)
  1363. :hook
  1364. (python-mode-hook . (lambda ()
  1365. (require 'lsp-pyright) (lsp))))
  1366. #+end_src
  1367. ** flymake
  1368. python in venv: pip install pyflake (or ruff?)
  1369. TODO: if ruff active, sideline stops working
  1370. #+begin_src emacs-lisp
  1371. (setq python-flymake-command '("ruff" "--quiet" "--stdin-filename=stdin" "-"))
  1372. #+end_src
  1373. ** sideline
  1374. show flymake errors on the right of code window
  1375. #+begin_src emacs-lisp
  1376. (use-package sideline
  1377. :ensure t)
  1378. (use-package sideline-flymake
  1379. :ensure t
  1380. :requires sideline
  1381. :hook
  1382. (flymake-mode . sideline-mode)
  1383. :init
  1384. (setq sideline-flymake-display-mode 'line ; 'point or 'line
  1385. ; sideline-backends-left '(sideline-lsp)
  1386. sideline-backends-right '(sideline-flymake)))
  1387. #+end_src
  1388. ** yasnippet
  1389. For useful snippet either install yasnippet-snippets or get them from here
  1390. [[https://github.com/AndreaCrotti/yasnippet-snippets][Github]]
  1391. #+begin_src emacs-lisp
  1392. (use-package yasnippet
  1393. :ensure t
  1394. :defer t
  1395. :diminish yas-minor-mode
  1396. :config
  1397. (setq yas-snippet-dirs (list (concat MY--PATH_USER_GLOBAL "snippets")))
  1398. (yas-global-mode t)
  1399. (yas-reload-all)
  1400. (unbind-key "TAB" yas-minor-mode-map)
  1401. (unbind-key "<tab>" yas-minor-mode-map))
  1402. #+end_src
  1403. ** hippie expand
  1404. With hippie expand I am able to use yasnippet and emmet at the same time with the same key.
  1405. #+begin_src emacs-lisp
  1406. (use-package hippie-exp
  1407. :ensure nil
  1408. :defer t
  1409. :bind
  1410. ("C-<return>" . hippie-expand)
  1411. :config
  1412. (setq hippie-expand-try-functions-list
  1413. '(yas-hippie-try-expand emmet-expand-line)))
  1414. #+end_src
  1415. ** COMMENT flycheck (now flymake)
  1416. #+BEGIN_SRC emacs-lisp
  1417. (use-package flycheck
  1418. :ensure t
  1419. :hook
  1420. ((css-mode . flycheck-mode)
  1421. (emacs-lisp-mode . flycheck-mode)
  1422. (python-mode . flycheck-mode))
  1423. :defer 1.0
  1424. :init
  1425. (setq flycheck-emacs-lisp-load-path 'inherit)
  1426. :config
  1427. (setq-default
  1428. flycheck-check-synta-automatically '(save mode-enabled)
  1429. flycheck-disable-checkers '(emacs-lisp-checkdoc)
  1430. eldoc-idle-delay .1 ;; let eldoc echo faster than flycheck
  1431. flycheck-display-errors-delay .3)) ;; this way any errors will override eldoc messages
  1432. #+END_SRC
  1433. ** smartparens
  1434. #+BEGIN_SRC emacs-lisp
  1435. (use-package smartparens
  1436. :ensure t
  1437. :diminish smartparens-mode
  1438. :bind
  1439. (:map smartparens-mode-map
  1440. ("C-M-f" . sp-forward-sexp)
  1441. ("C-M-b" . sp-backward-sexp)
  1442. ("C-M-a" . sp-backward-down-sexp)
  1443. ("C-M-e" . sp-up-sexp)
  1444. ("C-M-w" . sp-copy-sexp)
  1445. ("M-k" . sp-kill-sexp)
  1446. ("C-M-<backspace>" . sp-slice-sexp-killing-backward)
  1447. ("C-S-<backspace>" . sp-slice-sexp-killing-around)
  1448. ("C-]" . sp-select-next-thing-exchange))
  1449. :config
  1450. (setq sp-show-pair-from-inside nil
  1451. sp-escape-quotes-after-insert nil)
  1452. (require 'smartparens-config))
  1453. #+END_SRC
  1454. ** lisp
  1455. #+BEGIN_SRC emacs-lisp
  1456. (use-package elisp-mode
  1457. :ensure nil
  1458. :defer t)
  1459. #+END_SRC
  1460. ** web
  1461. apt install npm
  1462. sudo npm install -g vscode-html-languageserver-bin
  1463. evtl alternativ typescript-language-server?
  1464. Unter Windows:
  1465. Hier runterladen: https://nodejs.org/dist/latest/
  1466. und in ein Verzeichnis entpacken.
  1467. Optional: PATH erweitern unter Windows (so kann exec-path-from-shell den Pfad ermitteln):
  1468. PATH=P:\path\to\node;%path%
  1469. *** web-mode
  1470. #+BEGIN_SRC emacs-lisp
  1471. (use-package web-mode
  1472. :ensure t
  1473. :defer t
  1474. :mode
  1475. ("\\.phtml\\'"
  1476. "\\.tpl\\.php\\'"
  1477. "\\.djhtml\\'"
  1478. "\\.[t]?html?\\'")
  1479. :hook
  1480. (web-mode . smartparens-mode)
  1481. :init
  1482. (if *work_remote*
  1483. (setq exec-path (append exec-path '("P:/Tools/node"))))
  1484. :config
  1485. (setq web-mode-enable-auto-closing t
  1486. web-mode-enable-auto-pairing t))
  1487. #+END_SRC
  1488. Emmet offers snippets, similar to yasnippet.
  1489. Default completion is C-j
  1490. [[https://github.com/smihica/emmet-mode#usage][Github]]
  1491. #+begin_src emacs-lisp
  1492. (use-package emmet-mode
  1493. :ensure t
  1494. :defer t
  1495. :hook
  1496. ((web-mode . emmet-mode)
  1497. (css-mode . emmet-mode))
  1498. :config
  1499. (unbind-key "C-<return>" emmet-mode-keymap))
  1500. #+end_src
  1501. *** JavaScript
  1502. npm install -g typescript-language-server typescript
  1503. maybe only typescript?
  1504. npm install -g prettier
  1505. #+begin_src emacs-lisp
  1506. (use-package rjsx-mode
  1507. :ensure t
  1508. :mode ("\\.js\\'"
  1509. "\\.jsx'"))
  1510. ; :config
  1511. ; (setq js2-mode-show-parse-errors nil
  1512. ; js2-mode-show-strict-warnings nil
  1513. ; js2-basic-offset 2
  1514. ; js-indent-level 2)
  1515. ; (setq-local flycheck-disabled-checkers (cl-union flycheck-disable-checkers
  1516. ; '(javascript-jshint)))) ; jshint doesn"t work for JSX
  1517. (use-package tide
  1518. :ensure t
  1519. :after (rjsx-mode company flycheck)
  1520. ; :hook (rjsx-mode . setup-tide-mode)
  1521. :config
  1522. (defun setup-tide-mode ()
  1523. "Setup function for tide."
  1524. (interactive)
  1525. (tide-setup)
  1526. (flycheck-mode t)
  1527. (setq flycheck-check-synta-automatically '(save mode-enabled))
  1528. (tide-hl-identifier-mode t)))
  1529. ;; needs npm install -g prettier
  1530. (use-package prettier-js
  1531. :ensure t
  1532. :after (rjsx-mode)
  1533. :defer t
  1534. :diminish prettier-js-mode
  1535. :hook ((js2-mode rsjx-mode) . prettier-js-mode))
  1536. #+end_src
  1537. ** YAML
  1538. #+begin_src emacs-lisp
  1539. (use-package yaml-mode
  1540. :if *sys/linux*
  1541. :ensure t
  1542. :defer t
  1543. :mode ("\\.yml$" . yaml-mode))
  1544. #+end_src
  1545. ** R
  1546. #+BEGIN_SRC emacs-lisp
  1547. (use-package ess
  1548. :ensure t
  1549. :defer t
  1550. :init
  1551. (if *work_remote*
  1552. (setq exec-path (append exec-path '("P:/Tools/R/bin/x64"))
  1553. org-babel-R-command "P:/Tools/R/bin/x64/R --slave --no-save")))
  1554. #+END_SRC
  1555. ** project.el
  1556. #+begin_src emacs-lisp
  1557. (use-package project
  1558. :custom
  1559. (project-vc-extra-root-markers '(".project.el" ".project" )))
  1560. #+end_src
  1561. ** Python
  1562. Preparations:
  1563. - Install language server in *each* projects venv
  1564. source ./bin/activate
  1565. pip install pyright
  1566. - in project root:
  1567. touch .project.el
  1568. echo "((nil . (pyvenv-activate . "/path/to/project/.env")))" >> .dir-locals.el
  1569. für andere language servers
  1570. https://github.com/emacs-lsp/lsp-mode#install-language-server
  1571. TODO if in a project, set venv automatically
  1572. (when-let ((project (project-current))) (project-root project))
  1573. returns project path from project.el
  1574. to recognize a project, either have git or
  1575. place a .project.el file in project root and
  1576. (setq project-vc-extra-root-markers '(".project.el" "..." ))
  1577. #+begin_src emacs-lisp
  1578. (use-package python
  1579. :if *sys/linux*
  1580. :delight "π "
  1581. :defer t
  1582. :bind (("M-[" . python-nav-backward-block)
  1583. ("M-]" . python-nav-forward-block))
  1584. :mode
  1585. (("\\.py\\'" . python-mode)))
  1586. (use-package pyvenv
  1587. ; :if *sys/linux*
  1588. :ensure t
  1589. :defer t
  1590. :after python
  1591. :hook
  1592. (python-mode . pyvenv-mode)
  1593. :custom
  1594. (pyvenv-default-virtual-env-name ".env")
  1595. (pyvenv-mode-line-indicator '(pyvenv-virtual-env-name ("[venv:" pyvenv-virtual-env-name "]"))))
  1596. ;; formatting to pep8
  1597. ;; requires pip install black
  1598. ;(use-package blacken
  1599. ; :ensure t)
  1600. #+end_src
  1601. TODO python mode hook:
  1602. - activate venv
  1603. - activate eglot with proper ls
  1604. - activate tree-sitter?
  1605. - have some fallback if activations fail
  1606. * beancount
  1607. ** Installation
  1608. #+BEGIN_SRC shell :tangle no
  1609. sudo su
  1610. cd /opt
  1611. python3 -m venv beancount
  1612. source ./beancount/bin/activate
  1613. pip3 install wheel
  1614. pip3 install beancount
  1615. sleep 100
  1616. echo "shell running!"
  1617. deactivate
  1618. #+END_SRC
  1619. #+begin_src emacs-lisp
  1620. (use-package beancount
  1621. :ensure nil
  1622. :if *sys/linux*
  1623. :load-path "user-global/elisp/"
  1624. ; :ensure t
  1625. :defer t
  1626. :mode
  1627. ("\\.beancount$" . beancount-mode)
  1628. :hook
  1629. (beancount-mode . my/beancount-company)
  1630. :config
  1631. (defun my/beancount-company ()
  1632. (setq-local completion-at-point-functions #'beancount-completion-at-point))
  1633. (setq beancount-filename-main "/home/marc/Archiv/Finanzen/Transaktionen/transactions.beancount"))
  1634. #+end_src
  1635. +BEGIN_SRC emacs-lisp
  1636. (use-package beancount
  1637. :if *sys/linux*
  1638. :load-path "user-global/elisp"
  1639. ; :ensure t
  1640. :defer t
  1641. :mode
  1642. ("\\.beancount$" . beancount-mode)
  1643. ; :hook
  1644. ; (beancount-mode . my/beancount-company)
  1645. ; :init
  1646. ; (add-hook 'beancount-mode-hook 'company/beancount-mode-hook)
  1647. :config
  1648. (defun my/beancount-company ()
  1649. (setq-local completion-at-point-functions #'beancount-complete-at-point nil t))
  1650. ; (mapcar #'cape-company-to-capf
  1651. ; (list #'company-beancount #'company-dabbrev))))
  1652. (defun my--beancount-companyALT ()
  1653. (set (make-local-variable 'company-backends)
  1654. '(company-beancount)))
  1655. (setq beancount-filename-main "/home/marc/Archiv/Finanzen/Transaktionen/transactions.beancount"))
  1656. +END_SRC
  1657. To support org-babel, check if it can find the symlink to ob-beancount.el
  1658. #+BEGIN_SRC shell :tangle no
  1659. orgpath=`find /home/marc/.emacs.d/elpa/ -type d -name "org-plus*" -print`
  1660. beansym="$orgpath/ob-beancount.el
  1661. bean="/home/marc/Archiv/Programmierprojekte/Lisp/beancount-mode/ob-beancount.el"
  1662. if [ -h "$beansym" ]
  1663. then
  1664. echo "$beansym found"
  1665. elif [ -e "$bean" ]
  1666. then
  1667. echo "creating symlink"
  1668. ln -s "$bean" "$beansym"
  1669. else
  1670. echo "$bean not found, symlink creation aborted"
  1671. fi
  1672. #+END_SRC
  1673. Fava is strongly recommended.
  1674. #+BEGIN_SRC shell :tangle no
  1675. cd /opt
  1676. python3 -m venv fava
  1677. source ./fava/bin/activate
  1678. pip3 install wheel
  1679. pip3 install fava
  1680. deactivate
  1681. #+END_SRC
  1682. Start fava with fava my_file.beancount
  1683. It is accessable on this URL: [[http://127.0.0.1:5000][Fava]]
  1684. Beancount-mode can start fava and open the URL right away.
  1685. * Stuff after everything else
  1686. Set garbage collector to a smaller value to let it kick in faster.
  1687. Maybe a problem on Windows?
  1688. #+begin_src emacs-lisp
  1689. ;(setq gc-cons-threshold (* 2 1000 1000))
  1690. #+end_src
  1691. Rest of early-init.el
  1692. #+begin_src emacs-lisp :tangle early-init.el
  1693. (defconst config-org (expand-file-name "config.org" user-emacs-directory))
  1694. (defconst init-el (expand-file-name "init.el" user-emacs-directory))
  1695. (unless (file-exists-p init-el)
  1696. (require 'org)
  1697. (org-babel-tangle-file config-org init-el))
  1698. #+end_src