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.

1635 lines
47 KiB

5 years ago
2 years ago
3 years ago
3 years ago
6 years ago
6 years ago
1 year ago
6 years ago
6 years ago
6 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
6 years ago
3 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
  1. #+TITLE: Emacs configuration file
  2. #+AUTHOR: Marc
  3. #+BABEL: :cache yes
  4. #+PROPERTY: header-args :tangle yes
  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. - evil-collection or custom in init file?
  12. - Hydra
  13. - General
  14. - (defalias 'list-buffers 'ibuffer) ;; change default to ibuffer
  15. - ido?
  16. - treemacs (for linux)
  17. - treemacs-evil?
  18. - treemacs-projectile
  19. windmove?
  20. - tramp (in linux)
  21. - visual-regexp
  22. - org configuration: paths
  23. - org custom agenda
  24. - org-ql (related to org agendas)
  25. - org configuration: everything else
  26. - beancount configuration from config.org
  27. - CONTINUE TODO from config.org at Programming
  28. - all-the-icons?
  29. - lispy? [[https://github.com/abo-abo/lispy]]
  30. * Header
  31. Emacs variables are dynamically scoped. That's unusual for most languages, so disable it here, too
  32. #+begin_src emacs-lisp
  33. ;;; init.el --- -*- lexical-binding: t -*-
  34. #+end_src
  35. * First start
  36. These functions updates config.el whenever changes in config.org are made. The update will be active after saving.
  37. #+BEGIN_SRC emacs-lisp
  38. (defun my/tangle-config ()
  39. "Export code blocks from the literate config file."
  40. (interactive)
  41. ;; prevent emacs from killing until tangle-process finished
  42. (add-to-list 'kill-emacs-query-functions
  43. (lambda ()
  44. (or (not (process-live-p (get-process "tangle-process")))
  45. (y-or-n-p "\"my/tangle-config\" is running; kill it? "))))
  46. (org-babel-tangle-file config-org config-el)
  47. (message "reloading user-init-file")
  48. (load-file config-el))
  49. (add-hook 'org-mode-hook
  50. (lambda ()
  51. (if (equal (buffer-file-name) config-org)
  52. (my--add-local-hook 'after-save-hook 'my/tangle-config))))
  53. (defun my--add-local-hook (hook function)
  54. "Add buffer-local hook."
  55. (add-hook hook function :local t))
  56. (defun my/async-process (command &optional name filter)
  57. "Start an async process by running the COMMAND string with bash. Return the
  58. process object for it.
  59. NAME is name for the process. Default is \"async-process\".
  60. FILTER is function that runs after the process is finished, its args should be
  61. \"(process output)\". Default is just messages the output."
  62. (make-process
  63. :command `("bash" "-c" ,command)
  64. :name (if name name
  65. "async-process")
  66. :filter (if filter filter
  67. (lambda (process output) (message output)))))
  68. #+END_SRC
  69. A small function to measure start up time.
  70. Compare that to
  71. emacs -q --eval='(message "%s" (emacs-init-time))'
  72. (roughly 0.27s)
  73. https://blog.d46.us/advanced-emacs-startup/
  74. #+begin_src emacs-lisp
  75. (add-hook 'emacs-startup-hook
  76. (lambda ()
  77. (message "Emacs ready in %s with %d garbage collections."
  78. (format "%.2f seconds"
  79. (float-time
  80. (time-subtract after-init-time before-init-time)))
  81. gcs-done)))
  82. ;(setq gc-cons-threshold (* 50 1000 1000))
  83. #+end_src
  84. #+BEGIN_SRC emacs-lisp
  85. (require 'package)
  86. (add-to-list 'package-archives '("elpa" . "https://elpa.gnu.org/packages/") t)
  87. (add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t)
  88. (add-to-list 'package-archives '("melpa-stable" . "https://stable.melpa.org/packages/") t)
  89. (add-to-list 'package-archives '("nongnu" . "https://elpa.nongnu.org/nongnu/") t)
  90. ; fix for bug 34341
  91. (setq gnutls-algorithm-priority "NORMAL:-VERS-TLS1.3")
  92. (when (< emacs-major-version 27)
  93. (package-initialize))
  94. #+END_SRC
  95. #+BEGIN_SRC emacs-lisp
  96. (unless (package-installed-p 'use-package)
  97. (package-refresh-contents)
  98. (package-install 'use-package))
  99. (eval-when-compile
  100. (setq use-package-enable-imenu-support t)
  101. (require 'use-package))
  102. (require 'bind-key)
  103. (setq use-package-verbose t)
  104. (use-package diminish
  105. :ensure t)
  106. #+END_SRC
  107. cl is deprecated in favor for cl-lib, some packages like emmet still depend on cl.
  108. Shut off the compiler warning about it.
  109. Maybe turn it on again at some point before the next major emacs upgrade
  110. #+begin_src emacs-lisp
  111. (setq byte-compile-warnings '(cl-functions))
  112. #+end_src
  113. * Performance Optimization
  114. ** Garbage Collection
  115. Make startup faster by reducing the frequency of garbage collection.
  116. Set gc-cons-threshold (default is 800kb) to maximum value available, to prevent any garbage collection from happening during load time.
  117. #+BEGIN_SRC emacs-lisp :tangle early-init.el
  118. (setq gc-cons-threshold most-positive-fixnum)
  119. #+END_SRC
  120. Restore it to reasonable value after init. Also stop garbage collection during minibuffer interaction (helm etc.)
  121. #+begin_src emacs-lisp
  122. (defconst 1mb 1048576)
  123. (defconst 20mb 20971520)
  124. (defconst 30mb 31457280)
  125. (defconst 50mb 52428800)
  126. (defun my--defer-garbage-collection ()
  127. (setq gc-cons-threshold most-positive-fixnum))
  128. (defun my--restore-garbage-collection ()
  129. (run-at-time 1 nil (lambda () (setq gc-cons-threshold 30mb))))
  130. (add-hook 'emacs-startup-hook 'my--restore-garbage-collection 100)
  131. (add-hook 'minibuffer-setup-hook 'my--defer-garbage-collection)
  132. (add-hook 'minibuffer-exit-hook 'my--restore-garbage-collection)
  133. (setq read-process-output-max 1mb) ;; lsp-mode's performance suggest
  134. #+end_src
  135. ** File Handler
  136. #+begin_src emacs-lisp :tangle early-init.el
  137. (defvar default-file-name-handler-alist file-name-handler-alist)
  138. (setq file-name-handler-alist nil)
  139. (add-hook 'emacs-startup-hook
  140. (lambda ()
  141. (setq file-name-handler-alist default-file-name-handler-alist)) 100)
  142. #+end_src
  143. ** Others
  144. #+begin_src emacs-lisp :tangle early-init.el
  145. ;; Resizing the emacs frame can be a terriblu expensive part of changing the font.
  146. ;; By inhibiting this, we easily hale startup times with fonts that are larger
  147. ;; than the system default.
  148. (setq frame-inhibit-implied-resize t)
  149. #+end_src
  150. * Default settings
  151. ** paths
  152. #+BEGIN_SRC emacs-lisp
  153. (defconst *sys/gui*
  154. (display-graphic-p)
  155. "Is emacs running in a gui?")
  156. (defconst *sys/linux*
  157. (string-equal system-type 'gnu/linux)
  158. "Is the system running Linux?")
  159. (defconst *sys/windows*
  160. (string-equal system-type 'windows-nt)
  161. "Is the system running Windows?")
  162. (defconst *home_desktop*
  163. (string-equal (system-name) "marc")
  164. "Is emacs running on my desktop?")
  165. (defconst *home_laptop*
  166. (string-equal (system-name) "laptop")
  167. "Is emacs running on my laptop?")
  168. (defconst *work_local*
  169. (string-equal (system-name) "PMPCNEU08")
  170. "Is emacs running at work on the local system?")
  171. (defconst *work_remote*
  172. (or (string-equal (system-name) "PMTS01")
  173. (string-equal (system-name) "PMTSNEU01"))
  174. "Is emacs running at work on the remote system?")
  175. #+END_SRC
  176. #+BEGIN_SRC emacs-lisp
  177. (defvar MY--PATH_USER_LOCAL (concat user-emacs-directory "user-local/"))
  178. (defvar MY--PATH_USER_GLOBAL (concat user-emacs-directory "user-global/"))
  179. (add-to-list 'custom-theme-load-path (concat MY--PATH_USER_GLOBAL "themes"))
  180. (when *sys/linux*
  181. (defconst MY--PATH_ORG_FILES (expand-file-name "~/Archiv/Organisieren/"))
  182. (defconst MY--PATH_ORG_FILES_MOBILE (expand-file-name "~/Archiv/Organisieren/mobile/"))
  183. (defconst MY--PATH_ORG_JOURNAl (expand-file-name "~/Archiv/Organisieren/Journal/"))
  184. (defconst MY--PATH_ORG_ROAM (file-truename "~/Archiv/Organisieren/")))
  185. (when *work_remote*
  186. (defconst MY--PATH_ORG_FILES "p:/Eigene Dateien/Notizen/")
  187. (defconst MY--PATH_ORG_FILES_MOBILE nil) ;; hacky way to prevent "free variable" compiler error
  188. (defconst MY--PATH_ORG_JOURNAL nil) ;; hacky way to prevent "free variable" compiler error
  189. (defconst MY--PATH_START "p:/Eigene Dateien/Notizen/")
  190. (defconst MY--PATH_ORG_ROAM (expand-file-name "p:/Eigene Dateien/Notizen/")))
  191. (setq custom-file (concat MY--PATH_USER_LOCAL "custom.el")) ;; don't spam init.e with saved customization settings
  192. (setq backup-directory-alist `((".*" . ,temporary-file-directory)))
  193. (setq auto-save-file-name-transforms `((".*" ,temporary-file-directory)))
  194. #+end_src
  195. ** sane defaults
  196. #+begin_src emacs-lisp
  197. (setq-default create-lockfiles nil) ;; disable lock files, can cause trouble in e.g. lsp-mode
  198. (defalias 'yes-or-no-p 'y-or-n-p) ;; answer with y and n
  199. (setq custom-safe-themes t) ;; don't ask me if I want to load a theme
  200. (setq sentence-end-double-space nil) ;; don't coun two spaces after a period as the end of a sentence.
  201. (delete-selection-mode t) ;; delete selected region when typing
  202. (use-package saveplace
  203. :config
  204. (save-place-mode 1) ;; saves position in file when it's closed
  205. :custom
  206. (save-place-file (concat MY--PATH_USER_LOCAL "places")))
  207. (setq save-place-forget-unreadable-files nil) ;; checks if file is readable before saving position
  208. (global-set-key (kbd "RET") 'newline-and-indent) ;; indent after newline
  209. (setq save-interprogram-paste-before-kill t) ;; put replaced text into killring
  210. #+END_SRC
  211. ** Browser
  212. #+begin_src emacs-lisp
  213. (setq browse-url-function 'browse-url-generic
  214. browse-url-generic-program "firefox")
  215. #+end_src
  216. * Appearance
  217. ** Defaults
  218. #+begin_src emacs-lisp
  219. (set-charset-priority 'unicode)
  220. (setq-default locale-coding-system 'utf-8
  221. default-process-coding-system '(utf-8-unix . utf-8-unix))
  222. (set-terminal-coding-system 'utf-8)
  223. (set-keyboard-coding-system 'utf-8)
  224. (set-selection-coding-system 'utf-8)
  225. (if *sys/windows*
  226. (prefer-coding-system 'utf-8-dos)
  227. (prefer-coding-system 'utf-8))
  228. (setq-default bidi-paragraph-direction 'left-to-right
  229. bidi-inhibit-bpa t ;; both settings reduce line rescans
  230. uniquify-buffer-name-style 'forward
  231. indent-tabs-mode nil ;; avoid tabs in place of multiple spaces (they look bad in tex)
  232. indicate-empty-lines t ;; show empty lines
  233. scroll-margin 5 ;; smooth scrolling
  234. scroll-conservatively 10000
  235. scroll-preserve-screen-position 1
  236. scroll-step 1
  237. ring-bell-function 'ignore ;; disable pc speaker bell
  238. visible-bell t)
  239. (global-hl-line-mode t) ;; highlight current line
  240. (blink-cursor-mode -1) ;; turn off blinking cursor
  241. (column-number-mode t)
  242. #+end_src
  243. ** Remove redundant UI
  244. #+begin_src emacs-lisp :tangle early-init.el
  245. (menu-bar-mode -1) ;; disable menu bar
  246. (tool-bar-mode -1) ;; disable tool bar
  247. (scroll-bar-mode -1) ;; disable scroll bar
  248. #+end_src
  249. ** Font
  250. #+BEGIN_SRC emacs-lisp
  251. (when *sys/linux*
  252. (set-face-font 'default "Hack-10"))
  253. (when *work_remote*
  254. (set-face-font 'default "Lucida Sans Typewriter-11"))
  255. #+END_SRC
  256. ** Themes
  257. #+BEGIN_SRC emacs-lisp
  258. (defun my/toggle-theme ()
  259. (interactive)
  260. (when (or *sys/windows* *sys/linux*)
  261. (if (eq (car custom-enabled-themes) 'tango-dark)
  262. (progn (disable-theme 'tango-dark)
  263. (load-theme 'tango))
  264. (progn
  265. (disable-theme 'tango)
  266. (load-theme 'tango-dark)))))
  267. (bind-key "C-c t" 'my/toggle-theme)
  268. #+END_SRC
  269. Windows Theme:
  270. #+BEGIN_SRC emacs-lisp
  271. (when *sys/windows*
  272. (load-theme 'tango))
  273. (when *sys/linux*
  274. (load-theme 'plastic))
  275. #+END_SRC
  276. ** line wrappings
  277. #+BEGIN_SRC emacs-lisp
  278. (global-visual-line-mode)
  279. (diminish 'visual-line-mode)
  280. (use-package adaptive-wrap
  281. :ensure t
  282. :hook
  283. (visual-line-mode . adaptive-wrap-prefix-mode))
  284. ; :init
  285. ; (when (fboundp 'adaptive-wrap-prefix-mode)
  286. ; (defun me/activate-adaptive-wrap-prefix-mode ()
  287. ; "Toggle `visual-line-mode' and `adaptive-wrap-prefix-mode' simultaneously."
  288. ; (adaptive-wrap-prefix-mode (if visual-line-mode 1 -1)))
  289. ; (add-hook 'visual-line-mode-hook 'me/activate-adaptive-wrap-prefix-mode)))
  290. #+END_SRC
  291. ** line numbers
  292. #+BEGIN_SRC emacs-lisp
  293. (use-package display-line-numbers
  294. :init
  295. :hook
  296. ((prog-mode
  297. org-src-mode) . display-line-numbers-mode)
  298. :config
  299. (setq-default display-line-numbers-type 'visual
  300. display-line-numbers-current-absolute t
  301. display-line-numbers-with 4
  302. display-line-numbers-widen t))
  303. #+END_SRC
  304. ** misc
  305. Delight can replace mode names with custom names ,
  306. e.g. python-mode with just "π ".
  307. #+BEGIN_SRC emacs-lisp
  308. (use-package rainbow-mode
  309. :ensure t
  310. :diminish
  311. :hook
  312. ((org-mode
  313. emacs-lisp-mode) . rainbow-mode))
  314. (use-package delight
  315. :if *sys/linux*
  316. :ensure t)
  317. (show-paren-mode t) ;; show other part of brackets
  318. (setq blink-matching-paren nil) ;; not necessary with show-paren-mode, bugs out on C-s counsel-line
  319. (use-package rainbow-delimiters
  320. :ensure t
  321. :hook
  322. (prog-mode . rainbow-delimiters-mode))
  323. #+END_SRC
  324. * Bookmarks
  325. Usage:
  326. - C-x r m (bookmark-set): add bookmark
  327. - C-x r l (list-bookmark): list bookmarks
  328. - C-x r b (bookmark-jump): open bookmark
  329. Edit bookmarks (while in bookmark file):
  330. - d: mark current item
  331. - x: delete marked items
  332. - r: rename current item
  333. - s: save changes
  334. #+begin_src emacs-lisp
  335. (use-package bookmark
  336. :custom
  337. (bookmark-default-file (concat MY--PATH_USER_LOCAL "bookmarks")))
  338. #+end_src
  339. Some windows specific stuff
  340. #+BEGIN_SRC emacs-lisp
  341. (when *sys/windows*
  342. (remove-hook 'find-file-hook 'vc-refresh-state)
  343. ; (progn
  344. ; (setq gc-cons-threshold (* 511 1024 1024)
  345. ; gc-cons-percentage 0.5
  346. ; garbage-collection-messages t
  347. ; (run-with-idle-timer 5 t #'garbage-collect))
  348. (when (boundp 'w32-pipe-read-delay)
  349. (setq w32-pipe-read-delay 0))
  350. (when (boundp 'w32-get-true-file-attributes)
  351. (setq w32-get-true-file-attributes nil)))
  352. #+END_SRC
  353. * recentf
  354. Exclude some dirs from spamming recentf
  355. #+begin_src emacs-lisp
  356. (use-package recentf
  357. :defer 1
  358. :config
  359. (recentf-mode)
  360. :custom
  361. (recentf-exclude '(".*-autoloads\\.el\\'"
  362. "[/\\]\\elpa/"
  363. "COMMIT_EDITMSG\\'"))
  364. (recentf-save-file (concat MY--PATH_USER_LOCAL "recentf"))
  365. (recentf-max-menu-items 600)
  366. (recentf-max-saved-items 600))
  367. #+end_src
  368. * savehist
  369. #+begin_src emacs-lisp
  370. (use-package savehist
  371. :config
  372. (savehist-mode)
  373. :custom
  374. (savehist-file (concat MY--PATH_USER_LOCAL "history")))
  375. #+end_src
  376. * undo
  377. #+BEGIN_SRC emacs-lisp
  378. (use-package undo-tree
  379. :ensure t
  380. :diminish undo-tree-mode
  381. :init
  382. (global-undo-tree-mode 1)
  383. :custom
  384. (undo-tree-auto-save-history nil))
  385. #+END_SRC
  386. * ace-window
  387. #+begin_src emacs-lisp
  388. (use-package ace-window
  389. :ensure t
  390. :bind
  391. (:map global-map
  392. ("C-x o" . ace-window)))
  393. #+end_src
  394. * imenu-list
  395. A minor mode to show imenu in a sidebar.
  396. Call imenu-list-smart-toggle.
  397. [[https://github.com/bmag/imenu-list][Source]]
  398. #+BEGIN_SRC emacs-lisp
  399. (use-package imenu-list
  400. :ensure t
  401. :demand t ; otherwise mode loads too late and won't work on first file it's being activated on
  402. :config
  403. (setq imenu-list-focus-after-activation t
  404. imenu-list-auto-resize t
  405. imenu-list-position 'right)
  406. :bind
  407. (:map global-map
  408. ([f9] . imenu-list-smart-toggle))
  409. :custom
  410. (org-imenu-depth 4))
  411. #+END_SRC
  412. * which-key
  413. #+BEGIN_SRC emacs-lisp
  414. (use-package which-key
  415. :ensure t
  416. :diminish which-key-mode
  417. :defer t
  418. :hook
  419. (after-init . which-key-mode)
  420. :config
  421. (which-key-setup-side-window-bottom)
  422. (setq which-key-idle-delay 0.5))
  423. #+END_SRC
  424. * abbrev
  425. #+begin_src emacs-lisp
  426. (use-package abbrev
  427. :diminish abbrev-mode
  428. :hook
  429. ((text-mode org-mode) . abbrev-mode)
  430. :init
  431. (setq abbrev-file-name (concat MY--PATH_USER_GLOBAL "abbrev_tables.el"))
  432. :config
  433. (if (file-exists-p abbrev-file-name)
  434. (quietly-read-abbrev-file))
  435. (setq save-abbrevs 'silently)) ;; don't bother me with asking for abbrev saving
  436. #+end_src
  437. * Evil
  438. #+BEGIN_SRC emacs-lisp
  439. (use-package evil
  440. :ensure t
  441. :defer .1 ;; don't block emacs when starting, load evil immediately after startup
  442. :init
  443. (setq evil-want-C-i-jump nil) ;; prevent evil from blocking TAB in org tree expanding
  444. :config
  445. (evil-mode 1))
  446. #+END_SRC
  447. * General (key mapper)
  448. #+BEGIN_SRC emacs-lisp
  449. (use-package general
  450. :ensure t)
  451. (general-define-key
  452. :states 'normal
  453. :keymaps 'imenu-list-major-mode-map
  454. "RET" '(imenu-list-goto-entry :which-key "goto")
  455. "TAB" '(hs-toggle-hiding :which-key "collapse")
  456. "d" '(imenu-list-display-entry :which-key "show")
  457. "q" '(imenu-list-quit-window :which-key "quit"))
  458. #+END_SRC
  459. * Vertico & Orderless
  460. Vertico is a completion ui.
  461. Orderless orders the suggestions by recency. The package prescient orders by frequency.
  462. [[https://github.com/minad/vertico][Vertico Github]]
  463. [[https://github.com/oantolin/orderless][Orderless Github]]
  464. #+begin_src emacs-lisp
  465. ;; completion ui
  466. (use-package vertico
  467. :ensure t
  468. :init
  469. (vertico-mode))
  470. (use-package orderless
  471. :ensure t
  472. :init
  473. (setq completion-styles '(orderless basic)
  474. completion-category-defaults nil
  475. completion-category-overrides '((file (styles partial-completion)))))
  476. #+end_src
  477. * Consult
  478. [[https://github.com/minad/consult][Github]]
  479. #+begin_src emacs-lisp
  480. (use-package consult
  481. :ensure t
  482. :bind
  483. (("C-x C-r" . consult-recent-file)
  484. ("C-x b" . consult-buffer)
  485. ("C-s" . consult-line))
  486. :config
  487. ;; disable preview for some commands and buffers
  488. ;; and enable it by M-.
  489. ;; see https://github.com/minad/consult#use-package-example
  490. (consult-customize
  491. consult-theme
  492. :preview-key '(debounce 0.2 any)
  493. consult-ripgrep consult-git-grep consult-grep
  494. consult-bookmark consult-recent-file consult-xref
  495. consult--source-bookmark consult--source-file-register
  496. consult--source-recent-file consult--source-project-recent-file
  497. :preview-key (kbd "M-.")))
  498. #+end_src
  499. * Marginalia
  500. [[https://github.com/minad/marginalia/][Github]]
  501. Adds additional information to the minibuffer
  502. #+begin_src emacs-lisp
  503. (use-package marginalia
  504. :ensure t
  505. :init
  506. (marginalia-mode)
  507. :bind
  508. (:map minibuffer-local-map
  509. ("M-A" . marginalia-cycle))
  510. :custom
  511. ;; switch by 'marginalia-cycle
  512. (marginalia-annotators '(marginalia-annotators-heavy
  513. marginalia-annotators-light
  514. nil)))
  515. #+end_src
  516. * Embark
  517. Does stuff in the minibuffer results
  518. #+begin_src emacs-lisp
  519. (use-package embark
  520. :ensure t
  521. :bind
  522. (("C-S-a" . embark-act)
  523. ("C-h B" . embark-bindings))
  524. :init
  525. (setq prefix-help-command #'embark-prefix-help-command)
  526. :config
  527. ;; hide modeline of the embark live/completions buffers
  528. (add-to-list 'display-buffer-alist
  529. '("\\`\\*Embark Collect \\(Live\\|Completions\\)\\*"
  530. nil
  531. (window-parameters (mode-line-format . none)))))
  532. (use-package embark-consult
  533. :ensure t
  534. :after (embark consult)
  535. :demand t
  536. :hook
  537. (embark-collect-mode . embark-consult-preview-minor-mode))
  538. #+end_src
  539. * Helm
  540. As an alternative if I'm not happy with selectrum & co
  541. begin_src emacs-lisp
  542. (use-package helm
  543. :ensure t
  544. :hook
  545. (helm-mode . helm-autoresize-mode)
  546. ;; :bind
  547. ;; (("M-x" . helm-M-x)
  548. ;; ("C-s" . helm-occur)
  549. ;; ("C-x C-f" . helm-find-files)
  550. ;; ("C-x C-b" . helm-buffers-list)
  551. ;; ("C-x b" . helm-buffers-list)
  552. ;; ("C-x C-r" . helm-recentf)
  553. ;; ("C-x C-i" . helm-imenu))
  554. :config
  555. (helm-mode)
  556. :custom
  557. (helm-split-window-inside-p t) ;; open helm buffer inside current window
  558. (helm-move-to-line-cycle-in-source t)
  559. (helm-echo-input-in-header-line t)
  560. (helm-autoresize-max-height 20)
  561. (helm-autoresize-min-height 5)
  562. )
  563. end_src
  564. * ivy / counsel / swiper
  565. +BEGIN_SRC emacs-lisp
  566. ; (require 'ivy)
  567. (use-package ivy
  568. :ensure t
  569. :diminish
  570. (ivy-mode . "")
  571. :defer t
  572. :init
  573. (ivy-mode 1)
  574. :bind
  575. ("C-r" . ivy-resume) ;; overrides isearch-backwards binding
  576. :config
  577. (setq ivy-use-virtual-buffers t ;; recent files and bookmarks in ivy-switch-buffer
  578. ivy-height 20 ;; height of ivy window
  579. ivy-count-format "%d/%d" ;; current and total number
  580. ivy-re-builders-alist ;; regex replaces spaces with *
  581. '((t . ivy--regex-plus))))
  582. ; make counsel-M-x more descriptive
  583. (use-package ivy-rich
  584. :ensure t
  585. :defer t
  586. :init
  587. (ivy-rich-mode 1))
  588. (use-package counsel
  589. :ensure t
  590. :defer t
  591. :bind
  592. (("M-x" . counsel-M-x)
  593. ("C-x C-f" . counsel-find-file)
  594. ("C-x C-r" . counsel-recentf)
  595. ("C-x b" . counsel-switch-buffer)
  596. ("C-c C-f" . counsel-git)
  597. ("C-c h f" . counsel-describe-function)
  598. ("C-c h v" . counsel-describe-variable)
  599. ("M-i" . counsel-imenu)))
  600. ; :map minibuffer-local-map ;;currently mapped to evil-redo
  601. ; ("C-r" . 'counsel-minibuffer-history)))
  602. (use-package swiper
  603. :ensure t
  604. :bind
  605. ("C-s" . swiper))
  606. (use-package ivy-hydra
  607. :ensure t)
  608. +END_SRC
  609. * misc
  610. #+begin_src emacs-lisp
  611. (use-package autorevert
  612. :diminish auto-revert-mode)
  613. #+end_src
  614. * company
  615. #+BEGIN_SRC emacs-lisp
  616. (use-package company
  617. :defer 1
  618. :diminish
  619. :defer t
  620. :bind
  621. (("C-<tab>" . company-complete)
  622. :map company-active-map
  623. ("RET" . nil)
  624. ([return] . nil)
  625. ("TAB" . company-complete-selection)
  626. ([tab] . company-complete-selection)
  627. ("<right>" . company-complete-common)
  628. ("<escape>" . company-abort))
  629. :hook
  630. (after-init . global-company-mode)
  631. (emacs-lisp-mode . my--company-elisp)
  632. (org-mode . my--company-org)
  633. :config
  634. (defun my--company-elisp ()
  635. (message "set up company for elisp")
  636. (set (make-local-variable 'company-backends)
  637. '(company-capf ;; capf needs to be before yasnippet, or lsp fucks up completion for elisp
  638. company-yasnippet
  639. company-dabbrev-code
  640. company-files)))
  641. (defun my--company-org ()
  642. (set (make-local-variable 'company-backends)
  643. '(company-capf company-files))
  644. ;; (add-hook 'completion-at-point-functions 'pcomplete-completions-at-point nil t)
  645. (message "setup company for org"))
  646. (setq company-idle-delay .2
  647. company-minimum-prefix-length 1
  648. company-require-match nil
  649. company-show-numbers t
  650. company-tooltip-align-annotations t))
  651. (use-package company-statistics
  652. :ensure t
  653. :after company
  654. :defer t
  655. :init
  656. (setq company-statistics-file (concat MY--PATH_USER_LOCAL "company-statistics-cache.el"));~/.emacs.d/user-dir/company-statistics-cache.el")
  657. :config
  658. (company-statistics-mode 1))
  659. (use-package company-dabbrev
  660. :ensure nil
  661. :after company
  662. :defer t
  663. :config
  664. (setq-default company-dabbrev-downcase nil))
  665. ;; adds a info box right of the cursor with doc of the function
  666. (use-package company-box
  667. :ensure t
  668. :diminish
  669. :defer t
  670. :hook
  671. (company-mode . company-box-mode))
  672. ; :init
  673. ; (add-hook 'company-mode-hook 'company-box-mode))
  674. #+END_SRC
  675. * orgmode
  676. ** some notes
  677. *** copy file path within emacs
  678. Enter dired-other-window
  679. place cursor on the file
  680. M-0 w (copy absolute path)
  681. C-u w (copy relative path)
  682. *** Archiving
  683. C-c C-x C-a
  684. To keep the subheading structure when archiving, set the properties of the superheading.
  685. #+begin_src org :tangle no
  686. ,* FOO
  687. :PROPERTIES:
  688. :ARCHIVE: %s_archive::* FOO
  689. ,** DONE BAR
  690. ,** TODO BAZ
  691. #+end_src
  692. When moving BAR to archive, it will go to FILENAME.org_archive below the heading FOO.
  693. [[http://doc.endlessparentheses.com/Var/org-archive-location.html][Other examples]]
  694. ** org
  695. #+BEGIN_SRC emacs-lisp
  696. (defun my--buffer-prop-set (name value)
  697. "Set a file property called NAME to VALUE in buffer file.
  698. If the property is already set, replace its value."
  699. (setq name (downcase name))
  700. (org-with-point-at 1
  701. (let ((case-fold-search t))
  702. (if (re-search-forward (concat "^#\\+" name ":\\(.*\\)")
  703. (point-max) t)
  704. (replace-match (concat "#+" name ": " value) 'fixedcase)
  705. (while (and (not (eobp))
  706. (looking-at "^[#:]"))
  707. (if (save-excursion (end-of-line) (eobp))
  708. (progn
  709. (end-of-line)
  710. (insert "\n"))
  711. (forward-line)
  712. (beginning-of-line)))
  713. (insert "#+" name ": " value "\n")))))
  714. (defun my--buffer-prop-remove (name)
  715. "Remove a buffer property called NAME."
  716. (org-with-point-at 1
  717. (when (re-search-forward (concat "\\(^#\\+" name ":.*\n?\\)")
  718. (point-max) t)
  719. (replace-match ""))))
  720. (use-package org
  721. :ensure t
  722. :mode (("\.org$" . org-mode))
  723. :diminish org-indent-mode
  724. :defer 1
  725. :hook
  726. (org-mode . org-indent-mode)
  727. (org-source-mode . smartparens-mode)
  728. ; :init
  729. ; (add-hook 'org-mode-hook 'company/org-mode-hook)
  730. ; (add-hook 'org-src-mode-hook 'smartparens-mode)
  731. ; (add-hook 'org-mode-hook 'org-indent-mode)
  732. :bind (:map org-mode-map ("S-<right>" . org-shiftright)
  733. ("S-<left>" . org-shiftleft))
  734. :config
  735. (defun my--org-company ()
  736. (set (make-local-variable 'company-backends)
  737. '(company-capf company-files))
  738. (add-hook 'completion-at-point-functions 'pcomplete-completions-at-point nil t)
  739. (message "company/org-mode-hook"))
  740. (setq org-modules (quote (org-id
  741. org-habit
  742. org-tempo ;; easy templates
  743. )))
  744. (setq org-default-notes-file (concat MY--PATH_ORG_FILES "notes.org")
  745. org-agenda-files (list (concat MY--PATH_ORG_FILES "notes.org")
  746. (concat MY--PATH_ORG_FILES "projects.org")
  747. (concat MY--PATH_ORG_FILES "tasks.org")))
  748. (when *sys/linux*
  749. (nconc org-agenda-files
  750. (directory-files-recursively MY--PATH_ORG_FILES_MOBILE "\\.org$")))
  751. (setq org-id-locations-file (concat MY--PATH_USER_LOCAL ".org-id-locations")
  752. org-log-into-drawer "LOGBOOK")
  753. ;; some display customizations
  754. (setq org-pretty-entities t
  755. org-startup-truncated t
  756. org-startup-align-all-tables t)
  757. ;; some source code blocks customizations
  758. (setq org-src-window-setup 'current-window ;; C-c ' opens in current window
  759. org-src-fontify-natively t ;; use syntax highlighting in code blocks
  760. org-src-preserve-indentation t ;; no extra indentation
  761. org-src-tab-acts-natively t)
  762. (setq org-log-done 'time ;; create timestamp when task is done
  763. org-blank-before-new-entry '((heading) (plain-list-item)))) ;; prevent new line before new item
  764. #+END_SRC
  765. ** languages
  766. Set some languages and disable confirmation for evaluating code blocks C-c C-c
  767. +BEGIN_SRC emacs-lisp
  768. (org-babel-do-load-languages
  769. 'org-babel-load-languages
  770. '((emacs-lisp . t)
  771. (gnuplot . t)
  772. (js . t)
  773. (latex . t)
  774. (lisp . t)
  775. (python . t)
  776. (shell . t)
  777. (sqlite . t)
  778. (org . t)
  779. (R . t)
  780. (scheme . t)))
  781. (setq org-confirm-babel-evaluate nil)
  782. +END_SRC
  783. Another setup, because org-babel-do-load-languages requires eager loading
  784. #+begin_src emacs-lisp
  785. (use-package ob-org
  786. :defer t
  787. :ensure org-contrib
  788. :commands
  789. (org-babel-execute:org
  790. org-babel-expand-body:org))
  791. (use-package ob-python
  792. :defer t
  793. :ensure org-contrib
  794. :commands (org-babel-execute:python))
  795. (use-package ob-js
  796. :defer t
  797. :ensure org-contrib
  798. :commands (org-babel-execute:js))
  799. (use-package ob-shell
  800. :defer t
  801. :ensure org-contrib
  802. :commands
  803. (org-babel-execute:sh
  804. org-babel-expand-body:sh
  805. org-babel-execute:bash
  806. org-babel-expand-body:bash))
  807. (use-package ob-emacs-lisp
  808. :defer t
  809. :ensure org-contrib
  810. :commands
  811. (org-babel-execute:emacs-lisp
  812. org-babel-expand-body:emacs-lisp))
  813. (use-package ob-lisp
  814. :defer t
  815. :ensure org-contrib
  816. :commands
  817. (org-babel-execute:lisp
  818. org-babel-expand-body:lisp))
  819. (use-package ob-gnuplot
  820. :defer t
  821. :ensure org-contrib
  822. :commands
  823. (org-babel-execute:gnuplot
  824. org-babel-expand-body:gnuplot))
  825. (use-package ob-sqlite
  826. :defer t
  827. :ensure org-contrib
  828. :commands
  829. (org-babel-execute:sqlite
  830. org-babel-expand-body:sqlite))
  831. (use-package ob-latex
  832. :defer t
  833. :ensure org-contrib
  834. :commands
  835. (org-babel-execute:latex
  836. org-babel-expand-body:latex))
  837. (use-package ob-R
  838. :defer t
  839. :ensure org-contrib
  840. :commands
  841. (org-babel-execute:R
  842. org-babel-expand-body:R))
  843. (use-package ob-scheme
  844. :defer t
  845. :ensure org-contrib
  846. :commands
  847. (org-babel-execute:scheme
  848. org-babel-expand-body:scheme))
  849. #+end_src
  850. ** habits
  851. #+BEGIN_SRC emacs-lisp
  852. (require 'org-habit) ;;TODO Lösung ohne require finden, scheint mir nicht ideal zu sein, nur um ein org-modul zu aktivieren
  853. ;; (add-to-list 'org-modules "org-habit")
  854. (setq org-habit-graph-column 80
  855. org-habit-preceding-days 30
  856. org-habit-following-days 7
  857. org-habit-show-habits-only-for-today nil)
  858. #+END_SRC
  859. ** org-agenda
  860. Custom keywords, depending on environment
  861. #+BEGIN_SRC emacs-lisp
  862. (when *work_remote*
  863. (setq org-todo-keywords
  864. '((sequence "OPEN" "TODO" "UNCLEAR" "|" "DONE" "IMPOSSIBLE" "CANCELLED"))))
  865. #+END_SRC
  866. Add some key bindings
  867. #+BEGIN_SRC emacs-lisp
  868. (bind-key "C-c l" 'org-store-link)
  869. (bind-key "C-c c" 'org-capture)
  870. (bind-key "C-c a" 'org-agenda)
  871. #+END_SRC
  872. Sort agenda by deadline and priority
  873. #+BEGIN_SRC emacs-lisp
  874. (setq org-agenda-sorting-strategy
  875. (quote
  876. ((agenda deadline-up priority-down)
  877. (todo priority-down category-keep)
  878. (tags priority-down category-keep)
  879. (search category-keep))))
  880. #+END_SRC
  881. Customize the org agenda
  882. #+BEGIN_SRC emacs-lisp
  883. (defun my--org-skip-subtree-if-priority (priority)
  884. "Skip an agenda subtree if it has a priority of PRIORITY.
  885. PRIORITY may be one of the characters ?A, ?B, or ?C."
  886. (let ((subtree-end (save-excursion (org-end-of-subtree t)))
  887. (pri-value (* 1000 (- org-lowest-priority priority)))
  888. (pri-current (org-get-priority (thing-at-point 'line t))))
  889. (if (= pri-value pri-current)
  890. subtree-end
  891. nil)))
  892. (setq org-agenda-custom-commands
  893. '(("c" "Simple agenda view"
  894. ((tags "PRIORITY=\"A\""
  895. ((org-agenda-skip-function '(org-agenda-skip-entry-if 'todo 'done))
  896. (org-agenda-overriding-header "Hohe Priorität:")))
  897. (agenda ""
  898. ((org-agenda-span 7)
  899. (org-agenda-start-on-weekday nil)
  900. (org-agenda-overriding-header "Nächste 7 Tage:")))
  901. (alltodo ""
  902. ((org-agenda-skip-function '(or (my--org-skip-subtree-if-priority ?A)
  903. (org-agenda-skip-if nil '(scheduled deadline))))
  904. (org-agenda-overriding-header "Sonstige Aufgaben:")))))))
  905. #+END_SRC
  906. ** *TODO*
  907. [[https://github.com/alphapapa/org-ql][org-ql]]
  908. [[https://github.com/nobiot/org-transclusion][org-transclusion]]?
  909. ** org-caldav
  910. Vorerst deaktiviert, Nutzen evtl. nicht vorhanden
  911. #+BEGIN_SRC emacs-lisp
  912. ;;(use-package org-caldav
  913. ;; :ensure t
  914. ;; :config
  915. ;; (setq org-caldav-url "https://nextcloud.cloudsphere.duckdns.org/remote.php/dav/calendars/marc"
  916. ;; org-caldav-calendar-id "orgmode"
  917. ;; org-caldav-inbox (expand-file-name "~/Archiv/Organisieren/caldav-inbox")
  918. ;; org-caldav-files (concat MY--PATH_ORG_FILES "tasks")))
  919. #+END_SRC
  920. ** journal
  921. [[https://github.com/bastibe/org-journal][Source]]
  922. Ggf. durch org-roam-journal ersetzen
  923. #+BEGIN_SRC emacs-lisp
  924. (use-package org-journal
  925. :if *sys/linux*
  926. :ensure t
  927. :defer t
  928. :config
  929. ;; feels hacky, but this way compiler error "assignment to free variable" disappears
  930. (when (and (boundp 'org-journal-dir)
  931. (boundp 'org-journal-enable-agenda-integration))
  932. (setq org-journal-dir MY--PATH_ORG_JOURNAl
  933. org-journal-enable-agenda-integration t)))
  934. #+END_SRC
  935. ** org-roam
  936. [[https://github.com/org-roam/org-roam][Github]]
  937. Um Headings innerhalb einer Datei zu verlinken:
  938. - org-id-get-create im Heading,
  939. - org-roam-node-insert in der verweisenden Datei
  940. Bei Problemen wie unique constraint
  941. org-roam-db-clear-all
  942. org-roam-db-sync
  943. #+BEGIN_SRC emacs-lisp
  944. (use-package org-roam
  945. :ensure t
  946. :defer 2
  947. :after org
  948. :init
  949. (setq org-roam-v2-ack t)
  950. (defun my--buffer-roam-note-p ()
  951. "Return non-nil if the currently visited buffer is a note."
  952. (and buffer-file-name
  953. (string-prefix-p
  954. (expand-file-name (file-name-as-directory MY--PATH_ORG_ROAM))
  955. (file-name-directory buffer-file-name))))
  956. (defun my--org-roam-filter-by-tag (tag-name)
  957. (lambda (node)
  958. (member tag-name (org-roam-node-tags node))))
  959. (defun my--org-roam-list-notes-by-tag (tag-name)
  960. (mapcar #'org-roam-node-file
  961. (seq-filter
  962. (my--org-roam-filter-by-tag tag-name)
  963. (org-roam-node-list))))
  964. (defun my/org-roam-refresh-agenda-list ()
  965. "Add all org roam files with #+filetags: Project"
  966. (interactive)
  967. (nconc org-agenda-files
  968. (my--org-roam-list-notes-by-tag "Project")))
  969. :config
  970. (require 'org-roam-dailies) ;; ensure the keymap is available
  971. (org-roam-db-autosync-mode)
  972. ;; build the agenda list the first ime for the session
  973. (my/org-roam-refresh-agenda-list)
  974. :custom
  975. (org-roam-directory MY--PATH_ORG_ROAM)
  976. (org-roam-completion-everywhere t)
  977. (org-roam-capture-templates
  978. '(("d" "default" plain
  979. "%?"
  980. :if-new (file+head "notes/%<%Y%m%d%H%M%S>-${plug}.org" "#+title: ${title}\n")
  981. :unnarrowed t)
  982. ("n" "ndefault" plain
  983. "%?"
  984. :if-new (file+head "ideas/%<%Y%m%d%H%M%S>-${plug}.org" "#+title: ${title}\n")
  985. :unnarrowed t)
  986. ))
  987. :bind (("C-c n l" . org-roam-buffer-toggle)
  988. ("C-c n f" . org-roam-node-find)
  989. ("C-c n i" . org-roam-node-insert)
  990. :map org-mode-map
  991. ("C-M-i" . completion-at-point)
  992. :map org-roam-dailies-map
  993. ("Y" . org-roam-dailies-capture-yesterday)
  994. ("T" . org-roam-dailies-capture-tomorrow))
  995. :bind-keymap
  996. ("C-c n d" . org-roam-dailies-map))
  997. (use-package org-roam
  998. :if (eq *sys/windows* t)
  999. :init
  1000. (setq exec-path (append exec-path '("P:/Tools/sqlite")))
  1001. (use-package emacsql-sqlite3
  1002. :ensure t
  1003. :init
  1004. (setq emacsql-sqlite3-binary "P:/Tools/sqlite/sqlite3.exe"))
  1005. :config
  1006. (add-to-list 'org-roam-capture-templates
  1007. '("t" "telephone call" plain
  1008. "%?"
  1009. :if-new (file+head "telephone/%<%Y%m%d%H%M%S>-${plug}.org" "#+title: CALL %<%Y-%m-%d %H:%M> ${title}\n")
  1010. :unnarrowed t) t)
  1011. (add-to-list 'org-roam-capture-templates
  1012. '("p" "new Project" plain
  1013. "** ${title}\n :PROPERTIES:\n :ID: %(org-id-uuid)\n:END:\n%u\n"
  1014. :target (file+olp "projects.org" ("Active"))) t)
  1015. (add-to-list 'org-roam-capture-templates
  1016. '("s" "Sicherheitenmeldung" plain
  1017. "*** TODO [#A] Sicherheitenmeldung ${title}\n :PROPERTIES:\n :ID: %(org-id-uuid)\n:END:\n%u\n"
  1018. :target (file+olp "tasks.org" ("Todos" "Sicherheitenmeldungen"))) t)
  1019. (add-to-list 'org-roam-capture-templates
  1020. '("m" "Monatsbericht" plain'
  1021. "*** TODO [#A] Monatsbericht ${title}\n :PROPERTIES:\n :ID: %(org-id-uuid)\n:END:\n%u\n"
  1022. :target (file+olp "tasks.org" ("Todos" "Monatsberichte"))) t)
  1023. :custom
  1024. (org-roam-database-connector 'sqlite3))
  1025. #+END_SRC
  1026. *** TODO Verzeichnis außerhalb roam zum Archivieren (u.a. für erledigte Monatsmeldungen etc.)
  1027. * Programming
  1028. ** misc
  1029. #+begin_src emacs-lisp
  1030. (use-package eldoc
  1031. :diminish eldoc-mode
  1032. :defer t)
  1033. #+end_src
  1034. ** Magit / Git
  1035. Little crash course in magit:
  1036. - magit-init to init a git project
  1037. - magit-status (C-x g) to call the status window
  1038. In status buffer:
  1039. - s stage files
  1040. - u unstage files
  1041. - U unstage all files
  1042. - a apply changes to staging
  1043. - c c commit (type commit message, then C-c C-c to commit)
  1044. - b b switch to another branch
  1045. - P u git push
  1046. - F u git pull
  1047. #+BEGIN_SRC emacs-lisp
  1048. (use-package magit
  1049. :ensure t
  1050. :pin melpa-stable
  1051. :defer t
  1052. :init
  1053. ; set git-path in work environment
  1054. (if (string-equal user-login-name "POH")
  1055. (setq magit-git-executable "P:/Tools/Git/bin/git.exe")
  1056. )
  1057. :bind (("C-x g" . magit-status)))
  1058. #+END_SRC
  1059. ** LSP
  1060. Configuration for the language server protocol
  1061. *ACHTUNG* Dateipfad muss absolut sein, symlink im Pfad führt zumindest beim ersten Start zu Fehlern beim lsp
  1062. Sobald der lsp einmal lief, kann zukünftig der symlink-Pfad genommen werden.
  1063. Getestet wurde die funktionierende Datei selbst und neu erstellte Dateien im selben Pfad.
  1064. TODO Unterverzeichnisse wurden noch nicht getestet
  1065. #+BEGIN_SRC emacs-lisp
  1066. (setq read-process-output-max (* 1024 1024)) ;; support reading large blobs of data for LSP's sake
  1067. (use-package lsp-mode
  1068. :defer t
  1069. :commands (lsp lsp-execute-code-action)
  1070. :custom
  1071. (lsp-auto-guess-root nil)
  1072. (lsp-prefer-flymake nil) ; use flycheck instead
  1073. (lsp-prefer-capf t)
  1074. (lsp-file-watch-threshold 5000)
  1075. (lsp-print-performance t)
  1076. (lsp-log-io nil) ; enable log only for debug
  1077. (lsp-enable-folding t) ; default, maybe evil-matchit instead for performance?
  1078. (lsp-diagnostics-modeline-scope :project)
  1079. (lsp-enable-file-watchers nil)
  1080. (lsp-session-file (concat MY--PATH_USER_LOCAL "lsp-session"))
  1081. (lsp-eslint-library-choices-file (concat MY--PATH_USER_LOCAL "lsp-eslint-choices"))
  1082. :bind (:map lsp-mode-map ("C-c C-f" . lsp-format-buffer))
  1083. :hook
  1084. (((python-mode
  1085. js-mode
  1086. js2-mode
  1087. typescript-mode
  1088. web-mode
  1089. ) . lsp-deferred)
  1090. (lsp-mode . lsp-enable-which-key-integration)
  1091. (lsp-mode . lsp-diagnostics-modeline-mode)
  1092. (web-mode . #'lsp-flycheck-enable)) ;; enable flycheck-lsp for web-mode locally
  1093. :config
  1094. (setq lsp-diagnostics-package :none)) ; disable flycheck-lsp for most modes
  1095. ;; (add-hook 'web-mode-hook #'lsp-flycheck-enable)) ; enable flycheck-lsp for web-mode locally
  1096. (use-package lsp-ui
  1097. :after lsp-mode
  1098. :ensure t
  1099. :defer t
  1100. :diminish
  1101. :commands lsp-ui-mode
  1102. :config
  1103. (setq lsp-ui-doc-enable t
  1104. lsp-ui-doc-header t
  1105. lsp-ui-doc-include-signature t
  1106. lsp-ui-doc-position 'top
  1107. lsp-ui-doc-border (face-foreground 'default)
  1108. lsp-ui-sideline-enable t
  1109. lsp-ui-sideline-ignore-duplicate t
  1110. lsp-ui-sideline-show-code-actions nil)
  1111. (when *sys/gui*
  1112. (setq lsp-ui-doc-use-webkit t))
  1113. ;; workaround hide mode-line of lsp-ui-imenu buffer
  1114. (defadvice lsp-ui-imenu (after hide-lsp-ui-imenu-mode-line activate)
  1115. (setq mode-line-format nil)))
  1116. ;;NO LONGER SUPPORTED, USE company-capf / completion-at-point
  1117. ;(use-package company-lsp
  1118. ; :requires company
  1119. ; :defer t
  1120. ; :ensure t
  1121. ; :config
  1122. ; ;;disable client-side cache because lsp server does a better job
  1123. ; (setq company-transformers nil
  1124. ; company-lsp-async t
  1125. ; company-lsp-cache-candidates nil))
  1126. #+END_SRC
  1127. ** yasnippet
  1128. For useful snippet either install yasnippet-snippets or get them from here
  1129. [[https://github.com/AndreaCrotti/yasnippet-snippets][Github]]
  1130. #+begin_src emacs-lisp
  1131. (use-package yasnippet
  1132. :ensure t
  1133. :defer t
  1134. :diminish yas-minor-mode
  1135. :config
  1136. (setq yas-snippet-dirs (list (concat MY--PATH_USER_GLOBAL "snippets")))
  1137. (yas-global-mode t)
  1138. (yas-reload-all)
  1139. (unbind-key "TAB" yas-minor-mode-map)
  1140. (unbind-key "<tab>" yas-minor-mode-map))
  1141. #+end_src
  1142. ** hippie expand
  1143. With hippie expand I am able to use yasnippet and emmet at the same time with the same key.
  1144. #+begin_src emacs-lisp
  1145. (use-package hippie-exp
  1146. :defer t
  1147. :bind
  1148. ("C-<return>" . hippie-expand)
  1149. :config
  1150. (setq hippie-expand-try-functions-list
  1151. '(yas-hippie-try-expand emmet-expand-line)))
  1152. #+end_src
  1153. ** flycheck
  1154. #+BEGIN_SRC emacs-lisp
  1155. (use-package flycheck
  1156. :ensure t
  1157. :hook
  1158. ((css-mode . flycheck-mode)
  1159. (emacs-lisp-mode . flycheck-mode)
  1160. (python-mode . flycheck-mode))
  1161. :defer 1.0
  1162. :init
  1163. (setq flycheck-emacs-lisp-load-path 'inherit)
  1164. :config
  1165. (setq-default
  1166. flycheck-check-synta-automatically '(save mode-enabled)
  1167. flycheck-disable-checkers '(emacs-lisp-checkdoc)
  1168. eldoc-idle-delay .1 ;; let eldoc echo faster than flycheck
  1169. flycheck-display-errors-delay .3)) ;; this way any errors will override eldoc messages
  1170. #+END_SRC
  1171. ** Projectile
  1172. Manage projects and jump quickly between its files
  1173. #+BEGIN_SRC emacs-lisp
  1174. (use-package projectile
  1175. :ensure t
  1176. ; :defer 1.0
  1177. :diminish
  1178. :bind
  1179. (("C-c p" . projectile-command-map))
  1180. ;:preface
  1181. :init
  1182. (setq-default projectile-cache-file (concat MY--PATH_USER_LOCAL "projectile-cache")
  1183. projectile-known-projects-file (concat MY--PATH_USER_LOCAL "projectile-bookmarks"))
  1184. :config
  1185. (projectile-mode)
  1186. ; (add-hook 'projectile-after-switch-project-hook #'set-workon_home)
  1187. (setq-default projectile-completion-system 'ivy
  1188. projectile-enable-caching t
  1189. projectile-mode-line '(:eval (projectile-project-name))))
  1190. ;; requires ripgrep on system for rg functions
  1191. ;(use-package counsel-projectile
  1192. ; :ensure t
  1193. ; :config (counsel-projectile-mode) (setq ivy-use-virtual-buffers t ;; recent files and bookmarks in ivy-switch-buffer)
  1194. ;(use-package helm-projectile
  1195. ; :ensure t
  1196. ; :hook
  1197. ; (projectile-mode . helm-projectile))
  1198. #+END_SRC
  1199. ** smartparens
  1200. #+BEGIN_SRC emacs-lisp
  1201. (use-package smartparens
  1202. :ensure t
  1203. :diminish smartparens-mode
  1204. :bind
  1205. (:map smartparens-mode-map
  1206. ("C-M-f" . sp-forward-sexp)
  1207. ("C-M-b" . sp-backward-sexp)
  1208. ("C-M-a" . sp-backward-down-sexp)
  1209. ("C-M-e" . sp-up-sexp)
  1210. ("C-M-w" . sp-copy-sexp)
  1211. ("M-k" . sp-kill-sexp)
  1212. ("C-M-<backspace>" . sp-slice-sexp-killing-backward)
  1213. ("C-S-<backspace>" . sp-slice-sexp-killing-around)
  1214. ("C-]" . sp-select-next-thing-exchange))
  1215. :config
  1216. (setq sp-show-pair-from-inside nil
  1217. sp-escape-quotes-after-insert nil)
  1218. (require 'smartparens-config))
  1219. #+END_SRC
  1220. ** lisp
  1221. #+BEGIN_SRC emacs-lisp
  1222. (use-package elisp-mode
  1223. :defer t)
  1224. #+END_SRC
  1225. ** web
  1226. apt install npm
  1227. sudo npm install -g vscode-html-languageserver-bin
  1228. evtl alternativ typescript-language-server?
  1229. Unter Windows:
  1230. Hier runterladen: https://nodejs.org/dist/latest/
  1231. und in ein Verzeichnis entpacken.
  1232. Optional: PATH erweitern unter Windows (so kann exec-path-from-shell den Pfad ermitteln):
  1233. PATH=P:\path\to\node;%path%
  1234. #+BEGIN_SRC emacs-lisp
  1235. (use-package web-mode
  1236. :ensure t
  1237. :defer t
  1238. :mode
  1239. ("\\.phtml\\'"
  1240. "\\.tpl\\.php\\'"
  1241. "\\.djhtml\\'"
  1242. "\\.[t]?html?\\'")
  1243. :hook
  1244. (web-mode . smartparens-mode)
  1245. :init
  1246. (if *work_remote*
  1247. (setq exec-path (append exec-path '("P:/Tools/node"))))
  1248. :config
  1249. (setq web-mode-enable-auto-closing t
  1250. web-mode-enable-auto-pairing t))
  1251. #+END_SRC
  1252. Emmet offers snippets, similar to yasnippet.
  1253. Default completion is C-j
  1254. [[https://github.com/smihica/emmet-mode#usage][Github]]
  1255. #+begin_src emacs-lisp
  1256. (use-package emmet-mode
  1257. :ensure t
  1258. :defer t
  1259. :hook
  1260. ((web-mode . emmet-mode)
  1261. (css-mode . emmet-mode))
  1262. :config
  1263. (unbind-key "C-<return>" emmet-mode-keymap))
  1264. #+end_src
  1265. *** JavaScript
  1266. npm install -g typescript-language-server typescript
  1267. maybe only typescript?
  1268. npm install -g prettier
  1269. #+begin_src emacs-lisp
  1270. (use-package rjsx-mode
  1271. :ensure t
  1272. :mode ("\\.js\\'"
  1273. "\\.jsx'"))
  1274. ; :config
  1275. ; (setq js2-mode-show-parse-errors nil
  1276. ; js2-mode-show-strict-warnings nil
  1277. ; js2-basic-offset 2
  1278. ; js-indent-level 2)
  1279. ; (setq-local flycheck-disabled-checkers (cl-union flycheck-disable-checkers
  1280. ; '(javascript-jshint)))) ; jshint doesn"t work for JSX
  1281. (use-package tide
  1282. :ensure t
  1283. :after (rjsx-mode company flycheck)
  1284. ; :hook (rjsx-mode . setup-tide-mode)
  1285. :config
  1286. (defun setup-tide-mode ()
  1287. "Setup function for tide."
  1288. (interactive)
  1289. (tide-setup)
  1290. (flycheck-mode t)
  1291. (setq flycheck-check-synta-automatically '(save mode-enabled))
  1292. (tide-hl-identifier-mode t)))
  1293. ;; needs npm install -g prettier
  1294. (use-package prettier-js
  1295. :ensure t
  1296. :after (rjsx-mode)
  1297. :defer t
  1298. :diminish prettier-js-mode
  1299. :hook ((js2-mode rsjx-mode) . prettier-js-mode))
  1300. #+end_src
  1301. ** YAML
  1302. #+begin_src emacs-lisp
  1303. (use-package yaml-mode
  1304. :if *sys/linux*
  1305. :ensure t
  1306. :defer t
  1307. :mode ("\\.yml$" . yaml-mode))
  1308. #+end_src
  1309. ** R
  1310. #+BEGIN_SRC emacs-lisp
  1311. (use-package ess
  1312. :ensure t
  1313. :defer t
  1314. :init
  1315. (if *work_remote*
  1316. (setq exec-path (append exec-path '("P:/Tools/R/bin/x64"))
  1317. org-babel-R-command "P:/Tools/R/bin/x64/R --slave --no-save")))
  1318. #+END_SRC
  1319. ** Python
  1320. Systemseitig muss python-language-server installiert sein:
  1321. apt install python3-pip python3-setuptools python3-wheel
  1322. apt install build-essential python3-dev
  1323. pip3 install 'python-language-server[all]'
  1324. Statt obiges: npm install -g pyright
  1325. für andere language servers
  1326. https://github.com/emacs-lsp/lsp-mode#install-language-server
  1327. #+BEGIN_SRC emacs-lisp
  1328. ;(use-package lsp-python-ms
  1329. ; :if *sys/linux*
  1330. ; :ensure t
  1331. ; :defer t
  1332. ; :custom (lsp-python-ms-auto-install-server t))
  1333. (use-package lsp-pyright
  1334. :ensure t
  1335. :after lsp-mode
  1336. :defer t
  1337. :hook
  1338. (python-mode . (lambda ()
  1339. (require 'lsp-pyright)
  1340. (lsp-deferred)))
  1341. ; :custom
  1342. ; (lsp-pyright-auto-import-completions nil)
  1343. ; (lsp-pyright-typechecking-mode "off")
  1344. )
  1345. (use-package python
  1346. :if *sys/linux*
  1347. :delight "π "
  1348. :defer t
  1349. :bind (("M-[" . python-nav-backward-block)
  1350. ("M-]" . python-nav-forward-block)))
  1351. (use-package pyvenv
  1352. :if *sys/linux*
  1353. :ensure t
  1354. :defer t
  1355. :after python
  1356. :hook ((python-mode . pyvenv-mode)
  1357. (python-mode . (lambda ()
  1358. (if-let ((pyvenv-directory (find-pyvenv-directory (buffer-file-name))))
  1359. (pyvenv-activate pyvenv-directory))
  1360. (lsp))))
  1361. :custom
  1362. (pyvenv-default-virtual-env-name "env")
  1363. (pyvenv-mode-line-indicator '(pyvenv-virtual-env-name ("[venv:" pyvenv-virtual-env-name "]")))
  1364. :preface
  1365. (defun find-pyvenv-directory (path)
  1366. "Check if a pyvenv directory exists."
  1367. (cond
  1368. ((not path) nil)
  1369. ((file-regular-p path) (find-pyvenv-directory (file-name-directory path)))
  1370. ((file-directory-p path)
  1371. (or
  1372. (seq-find
  1373. (lambda (path) (file-regular-p (expand-file-name "pyvenv.cfg" path)))
  1374. (directory-files path t))
  1375. (let ((parent (file-name-directory (directory-file-name path))))
  1376. (unless (equal parent path) (find-pyvenv-directory parent))))))))
  1377. ;; manage multiple python version
  1378. ;; needs to be installed on system
  1379. ; (use-package pyenv-mode
  1380. ; :ensure t
  1381. ; :after python
  1382. ; :hook ((python-mode . pyenv-mode)
  1383. ; (projectile-switch-project . projectile-pyenv-mode-set))
  1384. ; :custom (pyenv-mode-set "3.8.5")
  1385. ; :preface
  1386. ; (defun projectile-pyenv-mode-set ()
  1387. ; "Set pyenv version matching project name."
  1388. ; (let ((project (projectile-project-name)))
  1389. ; (if (member project (pyenv-mode-versions))
  1390. ; (pyenv-mode-set project)
  1391. ; (pyenv-mode-unset)))))
  1392. ;)
  1393. #+END_SRC
  1394. * beancount
  1395. ** Installation
  1396. #+BEGIN_SRC shell :tangle no
  1397. sudo su
  1398. cd /opt
  1399. python3 -m venv beancount
  1400. source ./beancount/bin/activate
  1401. pip3 install wheel
  1402. pip3 install beancount
  1403. sleep 100
  1404. echo "shell running!"
  1405. deactivate
  1406. #+END_SRC
  1407. #+BEGIN_SRC emacs-lisp
  1408. (use-package beancount
  1409. :if *sys/linux*
  1410. :load-path "user-global/elisp"
  1411. ; :ensure t
  1412. :defer t
  1413. :mode
  1414. ("\\.beancount$" . beancount-mode)
  1415. :hook
  1416. (beancount-mode . my--beancount-company)
  1417. :init
  1418. (add-hook 'beancount-mode-hook 'company/beancount-mode-hook)
  1419. :config
  1420. (defun my--beancount-company ()
  1421. (set (make-local-variable 'company-backends)
  1422. '(company-beancount)))
  1423. (setq beancount-filename-main "/home/marc/Archiv/Finanzen/Transaktionen/transactions.beancount"))
  1424. #+END_SRC
  1425. To support org-babel, check if it can find the symlink to ob-beancount.el
  1426. #+BEGIN_SRC shell :tangle no
  1427. orgpath=`find /home/marc/.emacs.d/elpa/ -type d -name "org-plus*" -print`
  1428. beansym="$orgpath/ob-beancount.el
  1429. bean="/home/marc/Archiv/Programmierprojekte/Lisp/beancount-mode/ob-beancount.el"
  1430. if [ -h "$beansym" ]
  1431. then
  1432. echo "$beansym found"
  1433. elif [ -e "$bean" ]
  1434. then
  1435. echo "creating symlink"
  1436. ln -s "$bean" "$beansym"
  1437. else
  1438. echo "$bean not found, symlink creation aborted"
  1439. fi
  1440. #+END_SRC
  1441. Fava is strongly recommended.
  1442. #+BEGIN_SRC shell :tangle no
  1443. cd /opt
  1444. python3 -m venv fava
  1445. source ./fava/bin/activate
  1446. pip3 install wheel
  1447. pip3 install fava
  1448. deactivate
  1449. #+END_SRC
  1450. Start fava with fava my_file.beancount
  1451. It is accessable on this URL: [[http://127.0.0.1:5000][Fava]]
  1452. Beancount-mode can start fava and open the URL right away.
  1453. * Stuff after everything else
  1454. Set garbage collector to a smaller value to let it kick in faster.
  1455. Maybe a problem on Windows?
  1456. #+begin_src emacs-lisp
  1457. ;(setq gc-cons-threshold (* 2 1000 1000))
  1458. #+end_src