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.

1909 lines
59 KiB

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