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.

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