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.

1214 lines
34 KiB

6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
  1. #+TITLE: Emacs Configuration
  2. #+AUTHOR: Marc Pohling
  3. * Personal Information
  4. #+begin_src emacs-lisp
  5. (setq user-full-name "Marc Pohling"
  6. user-mail-address "marc.pohling@googlemail.com")
  7. #+end_src
  8. * Stuff to add / to fix
  9. - smartparens
  10. a sane default configuration for navigation, manipulation etc. is still necessary
  11. - Spaceline / Powerline or similar
  12. I want a pretty status bar!
  13. - Markdown mode
  14. There might be more than one package for this.
  15. - Git gutter:
  16. Do some configuration to make it useful (see given source link in the [[*Git][Section]] of gutter)
  17. Maybe only enable it for modes where it is likely I use git?
  18. - Some webmode stuff
  19. * Update config in a running config
  20. Two options:
  21. - reload the open file: M-x load-file, then press twice to accept
  22. the default filename, which is the currently opened
  23. - Point at the end of any sexp and press C-x C-e
  24. * Customize settings
  25. Move the customize settings to its own file, instead of saving
  26. customize settings in [[file:init.el][init.el]].
  27. #+begin_src emacs-lisp
  28. (setq custom-file (expand-file-name "custom.el" user-emacs-directory))
  29. (load custom-file)
  30. #+end_src
  31. * Theme
  32. ** Font
  33. Don't add the font in the work environment, which I am logged in as POH
  34. #+begin_src emacs-lisp
  35. (unless (string-equal user-login-name "POH")
  36. (set-face-attribute 'default nil :font "Hack-12")
  37. )
  38. #+end_src
  39. ** Material Theme
  40. The [[https://github.com/cpaulik/emacs-material-theme][Material Theme]] comes in a dark and a light variant. Not too dark
  41. to be strenious though.
  42. b
  43. #+begin_src emacs-lisp
  44. (use-package material-theme
  45. :if (window-system)
  46. :defer t
  47. :ensure t
  48. ;; :init
  49. ;; (load-theme 'material t)
  50. )
  51. #+end_src
  52. ** Apropospriate Theme
  53. Variants dark and light
  54. #+begin_src emacs-lisp
  55. (use-package apropospriate-theme
  56. :if (window-system)
  57. :defer t
  58. :ensure t
  59. :init
  60. (load-theme 'apropospriate-dark t)
  61. )
  62. #+end_src
  63. * Sane defaults
  64. Sources for this section include [[https://github.com/magnars/.emacs.d/blob/master/settings/sane-defaults.el][Magnars Sveen]] and [[http://pages.sachachua.com/.emacs.d/Sacha.html][Sacha Chua]]
  65. These functions are useful. Activate them.
  66. #+begin_src emacs-lisp
  67. (put 'downcase-region 'disabled nil)
  68. (put 'upcase-region 'disabled nil)
  69. (put 'narrow-to-region 'disabled nil)
  70. (put 'dired-find-alternate-file 'disabled nil)
  71. #+end_src
  72. Answering just 'y' or 'n' should be enough.
  73. #+begin_src emacs-lisp
  74. (defalias 'yes-or-no-p 'y-or-n-p)
  75. #+end_src
  76. Keep all backup and auto-save files in one directory
  77. #+begin_src emacs-lisp
  78. (setq backup-directory-alist '(("." . "~/.emacs.d/backups")))
  79. (setq auto-save-file-name-transforms '((".*" "~/.emacs.d/auto-save-list/" t)))
  80. #+end_src
  81. UTF-8 please
  82. #+begin_src emacs-lisp
  83. (setq locale-coding-system 'utf-8)
  84. (set-terminal-coding-system 'utf-8)
  85. (set-keyboard-coding-system 'utf-8)
  86. (set-selection-coding-system 'utf-8)
  87. (prefer-coding-system 'utf-8)
  88. #+end_src
  89. Avoid tabs in place of multiple spaces (they look bad in TeX)
  90. and show empty lines
  91. #+begin_src emacs-lisp
  92. (setq-default indent-tabs-mode nil)
  93. (setq-default indicate-empty-lines t)
  94. #+end_src
  95. Turn off blinking cursor
  96. #+begin_src emacs-lisp
  97. (blink-cursor-mode -1)
  98. #+end_src
  99. Don't count two spaces after a period as the end of a sentence.
  100. Just one space is needed
  101. #+begin_src emacs-lisp
  102. (setq sentence-end-double-space nil)
  103. #+end_src
  104. Delete the region when typing, just like as we expect nowadays.
  105. #+begin_src emacs-lisp
  106. (delete-selection-mode t)
  107. #+end_src
  108. Auto-indent when pressing RET, just new-line when C-j
  109. #+begin_src emacs-lisp
  110. (define-key global-map (kbd "RET") 'newline-and-indent)
  111. (define-key global-map (kbd "C-j") 'newline)
  112. #+end_src
  113. Various stuff
  114. #+begin_src emacs-lisp
  115. (show-paren-mode t)
  116. (column-number-mode t)
  117. (setq uniquify-buffer-name-style 'forward)
  118. #+end_src
  119. * Prettier Line Wraps
  120. By default there is no line wrapping. M-q actually modifies the buffer, which might not be wanted.
  121. So: enable visual wrapping and keep indentation if there are any.
  122. #+begin_src emacs-lisp
  123. (global-visual-line-mode)
  124. (diminish 'visual-line-mode)
  125. (use-package adaptive-wrap
  126. :ensure t
  127. :init
  128. (when (fboundp 'adaptive-wrap-prefix-mode)
  129. (defun my-activate-adaptive-wrap-prefix-mode ()
  130. "Toggle `visual-line-mode' and `adaptive-wrap-prefix-mode' simultaneously."
  131. (adaptive-wrap-prefix-mode (if visual-line-mode 1 -1)))
  132. (add-hook 'visual-line-mode-hook 'my-activate-adaptive-wrap-prefix-mode))
  133. )
  134. #+end_src
  135. * List buffers
  136. Ibuffer is the improved version of list-buffers.
  137. Make ibuffer the default buffer lister. [[http://ergoemacs.org/emacs/emacs_buffer_management.html][Source]]
  138. #+begin_src emacs-lisp
  139. (defalias 'list-buffers 'ibuffer)
  140. #+end_src
  141. Also auto refresh dired, but be quiet about it. [[http://whattheemacsd.com/sane-defaults.el-01.html][Source]]
  142. #+begin_src emacs-lisp
  143. (add-hook 'dired-mode-hook 'auto-revert-mode)
  144. (setq global-auto-revert-non-file-buffers t)
  145. (setq auto-revert-verbose nil)
  146. #+end_src
  147. * Org Mode
  148. ** Installation
  149. Although org mode ships with Emacs, the latest version can be installed externally. The configuration here follows the [[http://orgmode.org/elpa.html][Org mode ELPA Installation instructions.]]
  150. Added a hook to complete org functions, company-capf is necessary for this
  151. #+begin_src emacs-lisp
  152. (use-package org
  153. :ensure org-plus-contrib
  154. :init
  155. (add-hook 'org-mode-hook 'company/org-mode-hook)
  156. )
  157. #+end_src
  158. To avoid problems executing source blocks out of the box. [[https://emacs.stackexchange.com/a/28604][Others have the same problem, too]]. The solution is to remove the .elc files form the package directory:
  159. #+begin_src sh:
  160. var ORG_DIR=(let* ((org-v (cadr (split-string (org-version nil t) "@"))) (len (length org-v))) (substring org-v 1 (- len 2)))
  161. rm ${ORG_DIR}/*.elc
  162. #+end_src
  163. *** Org key bindings
  164. Set up some global key bindings that integrate with Org mode features
  165. #+begin_src emacs-lisp
  166. (bind-key "C-c l" 'org-store-link)
  167. (bind-key "C-c c" 'org-capture)
  168. (bind-key "C-c a" 'org-agenda)
  169. #+end_src
  170. Org overwrites RET and C-j, so I need to disable the rebinds
  171. #+begin_src emacs-lisp
  172. (define-key org-mode-map (kbd "RET") nil) ;;org-return
  173. (define-key org-mode-map (kbd "C-j") nil) ;;org-return-indent
  174. #+end_src
  175. *** Org agenda
  176. For a more detailed example [[https://github.com/sachac/.emacs.d/blob/83d21e473368adb1f63e582a6595450fcd0e787c/Sacha.org#org-agenda][see here]].
  177. #+begin_src emacs-lisp
  178. (setq org-agenda-files
  179. (delq nil
  180. (mapcar (lambda (x) (and (file-exists-p x) x))
  181. '("~/Archiv/Dokumente/Agenda"))
  182. )
  183. )
  184. #+end_src
  185. *** Org capture
  186. #+begin_src emacs-lisp
  187. (bind-key "C-c c" 'org-capture)
  188. (setq org-default-notes-file "~/Archiv/Dokumente/Notizen/notes.org")
  189. #+end_src
  190. ** Org Setup
  191. Speed commands are a nice and quick way to perform certain actions while at the beginning of a heading. It's not activated by default.
  192. See the doc for speed keys by checking out the documentation for speed keys in Org mode.
  193. #+begin_src emacs-lisp
  194. (setq org-use-speed-commands t)
  195. (setq org-image-actual-width 550)
  196. (setq org-highlight-latex-and-related '(latex script entities))
  197. #+end_src
  198. Hide emphasis markup (e.g. / ... / for italics, etc.)
  199. #+begin_src emacs-lisp
  200. (setq org-hide-emphasis-markers t)
  201. #+end_src
  202. Setting some environment paths
  203. #+begin_src emacs-lisp
  204. (if (string-equal user-login-name "POH")
  205. (progn
  206. (defvar PATH_ORG_FILES "p:/Eigene Dateien/Notizen/")
  207. (defvar PATH_ORG_JOURNAL "p:/Eigene Dateien/Notizen/Journal/")
  208. (defvar PATH_START "p:/Eigene Dateien/Notizen/"))
  209. )
  210. #+end_src
  211. Sort org agenda by deadline and priority
  212. #+begin_src emacs-lisp
  213. (setq org-agenda-sorting-strategy
  214. (quote
  215. ((agenda deadline-up priority-down)
  216. (todo priority-down category-keep)
  217. (tags priority-down category-keep)
  218. (search category-keep)))
  219. )
  220. #+end_src
  221. Custom todo-keywords, depending on environment
  222. #+begin_src emacs-lisp
  223. (if (string-equal user-login-name "POH")
  224. (setq org-todo-keywords
  225. '((sequence "OPEN" "TODO" "UNCLEAR" "|" "DONE" "IMPOSSIBLE")))
  226. )
  227. #+end_src
  228. Set locations of some org files
  229. #+begin_src emacs-lisp
  230. (if (string-equal user-login-name "POH")
  231. (progn
  232. (setq org-default-notes-file (concat PATH_ORG_FILES "notes.org"))
  233. (setq org-agenda-files (list(concat PATH_ORG_FILES "notes.org")
  234. (concat PATH_ORG_FILES "projects.org")
  235. (concat PATH_ORG_FILES "todo.org"))))
  236. )
  237. #+end_src
  238. Work specific org-capture-templates
  239. #+begin_src emacs-lisp
  240. (if (string-equal user-login-name "POH")
  241. (setq org-capture-templates
  242. '(("t" "todo" entry (file (concat PATH_ORG_FILES "todo.org"))
  243. "** TODO %\\n%u\n%a\n")
  244. ("n" "note" entry (file org-default-notes-file))
  245. ("p" "project" entry (file (concat PATH_ORG_FILES "projects.org"))
  246. "** OPEN %?\n%u\n** Beschreibung\n** Zu erledigen\n*** \n** Verlauf\n***" :clock-in t :clock-resume t)
  247. ("u" "Unterbrechung" entry (file org-default-notes-file)
  248. "* Unterbrechnung durch %? :Unterbrechung:\n%t" :clock-in t :clock-resume t)))
  249. )
  250. #+end_src
  251. Customize the org agenda
  252. #+begin_src emacs-lisp
  253. (defun my-org-skip-subtree-if-priority (priority)
  254. "Skip an agenda subtree if it has a priority of PRIORITY.
  255. PRIORITY may be one of the characters ?A, ?B, or ?C."
  256. (let ((subtree-end (save-excursion (org-end-of-subtree t)))
  257. (pri-value (* 1000 (- org-lowest-priority priority)))
  258. (pri-current (org-get-priority (thing-at-point 'line t))))
  259. (if (= pri-value pri-current)
  260. subtree-end
  261. nil)))
  262. (setq org-agenda-custom-commands
  263. '(("c" "Simple agenda view"
  264. ((tags "PRIORITY=\"A\""
  265. ((org-agenda-skip-function '(org-agenda-skip-entry-if 'todo 'done))
  266. (org-agenda-overriding-header "Hohe Priorität:")))
  267. (agenda ""
  268. ((org-agenda-span 7)
  269. (org-agenda-start-on-weekday nil)
  270. (org-agenda-overriding-header "Nächsten 7 Tage:")))
  271. (alltodo ""
  272. ((org-agenda-skip-function '(or (my-org-skip-subtree-if-priority ?A)
  273. (org-agenda-skip-if nil '(scheduled deadline))))
  274. (org-agenda-overriding-header "Sonstige Aufgaben:"))))))
  275. )
  276. #+end_src
  277. ** Org tags
  278. The default value is -77, which is weird for smaller width windows. I'd rather have the tags align horizontally with the header.
  279. 45 is a good column number to do that.
  280. #+begin_src emacs-lisp
  281. (setq org-tags-column 45)
  282. #+end_src
  283. ** Org babel languages
  284. This code block is linux specific. Loading languages which aren't available seems to be a problem
  285. #+begin_src emacs-lisp
  286. (cond ((eq system-type 'gnu/linux)
  287. (org-babel-do-load-languages
  288. 'org-babel-load-languages
  289. '(
  290. (C . t)
  291. (calc . t)
  292. (java . t)
  293. (js . t)
  294. (latex . t)
  295. (ledger . t)
  296. (lisp . t)
  297. (python . t)
  298. (R . t)
  299. (ruby . t)
  300. (scheme . t)
  301. (shell . t)
  302. (sqlite . t)
  303. )
  304. ))
  305. )
  306. #+end_src
  307. #+begin_src emacs-lisp
  308. (defun my-org-confirm-babel-evaluate (lang body)
  309. "Do not confirm evaluation for these languages."
  310. (not (or (string= lang "C")
  311. (string= lang "java")
  312. (string= lang "python")
  313. (string= lang "R")
  314. (string= lang "ledger")
  315. (string= lang "emacs-lisp")
  316. (string= lang "sqlite"))))
  317. (setq org-confirm-babel-evaluate 'my-org-confirm-babel-evaluate)
  318. #+end_src
  319. I want plots!
  320. #+begin_src emacs-lisp
  321. (use-package ess
  322. :ensure t
  323. )
  324. (add-hook 'org-babel-after-execute-hook 'org-display-inline-images)
  325. (add-hook 'org-mode-hook 'org-display-inline-images)
  326. #+end_src
  327. ** Org babel/source blocks
  328. I like to have source blocks properly syntax highlighted and with the editing popup window staying within the same window so all the windows don't jump around. Also, having the top and bottom trailing lines in the block is a waste of space, so we can remove them
  329. I noticed that fontification doesn't work with markdown mode when the block is indented after editing it in the org src buffer - the leading #s for headers don't get fontified properly because they apppear as Org comments. Setting ~org-src-preserve-identation~ makes things consistent as it doesn't pad source blocks with leading spaces
  330. #+begin_src emacs-lisp
  331. (setq org-src-fontify-natively t
  332. org-src-window-setup 'current-window
  333. org-src-strip-leading-and-trailing-blank-lines t
  334. org-src-preserve-indentation t
  335. org-src-tab-acts-natively t)
  336. #+end_src
  337. * which-key
  338. Greatly increases discovery of functions!
  339. Click [[https://github.com/justbur/emacs-which-key][here]] for source and more info.
  340. Info in Emacs: M-x customize-group which-key
  341. #+begin_src emacs-lisp
  342. (use-package which-key
  343. :ensure t
  344. :diminish which-key-mode
  345. :config
  346. (which-key-mode)
  347. (which-key-setup-side-window-right-bottom)
  348. (which-key-setup-minibuffer)
  349. (setq which-key-idle-delay 0.5)
  350. )
  351. #+end_src
  352. * Ido (currently inactive)
  353. better completion
  354. begin_src emacs-lisp
  355. (use-package ido
  356. :init
  357. (setq ido-enable-flex-matching t)
  358. (setq ido-everywhere t)
  359. (ido-mode t)
  360. (use-package ido-vertical-mode
  361. :ensure t
  362. :defer t
  363. :init
  364. (ido-vertical-mode 1)
  365. (setq ido-vertical-define-keys 'C-n-and-C-p-only)
  366. )
  367. )
  368. end_src
  369. * ivy / counsel / swiper
  370. Flx is required for fuzzy-matching
  371. Is it really necessary?
  372. begin_src emacs-lisp
  373. (use-package flx)
  374. end_src
  375. Ivy displays a window with suggestions for hotkeys and M-x
  376. #+begin_src emacs-lisp
  377. (use-package ivy
  378. :ensure t
  379. :diminish
  380. (ivy-mode . "") ;; does not display ivy in the mode line
  381. :init
  382. (ivy-mode 1)
  383. :bind
  384. ("C-c C-r" . ivy-resume)
  385. :config
  386. (setq ivy-use-virtual-buffers t) ;; recent files and bookmarks in ivy-switch-buffer
  387. (setq ivy-height 20) ;; height of ivy window
  388. (setq ivy-count-format "%d/%d") ;; current and total number
  389. (setq ivy-re-builders-alist ;; regex replaces spaces with *
  390. '((t . ivy--regex-plus)))
  391. )
  392. #+end_src
  393. Counsel replaces:
  394. - M-x
  395. - C-x C-f find-file
  396. - C-c h f describe-function
  397. - C-c h v describe-variable
  398. - M-i imenu
  399. The find-file replacement is nicer to navigate
  400. #+begin_src emacs-lisp
  401. (use-package counsel
  402. :ensure t
  403. :bind* ;; load counsel when pressed
  404. (("M-x" . counsel-M-x)
  405. ("C-x C-f" . counsel-find-file)
  406. ("C-c h f" . counsel-describe-function)
  407. ("C-c h v" . counsel-describe-variable)
  408. ("M-i" . counsel-imenu)
  409. )
  410. )
  411. #+end_src
  412. Swiper ivy-enhances isearch
  413. #+begin_src emacs-lisp
  414. (use-package swiper
  415. :ensure t
  416. :bind
  417. (("C-s" . swiper)
  418. ("C-c C-r" . ivy-resume)
  419. )
  420. )
  421. #+end_src
  422. * Recentf
  423. Requires counsel
  424. #+begin_src emacs-lisp
  425. (use-package recentf
  426. :bind ("C-x C-r" . counsel-recentf)
  427. :config
  428. (recentf-mode t)
  429. (setq recentf-max-saved-items 200)
  430. )
  431. #+end_src
  432. * Latex
  433. Requirements for Linux:
  434. - Latex
  435. - pdf-tools
  436. #+begin_src emacs-lisp
  437. (unless (string-equal user-login-name "POH")
  438. (use-package pdf-tools
  439. :ensure t
  440. :config
  441. (pdf-tools-install)
  442. (setq TeX-view-program-selection '((output-pdf "pdf-tools")))
  443. (setq TeX-view-program-list '(("pdf-tools" "Tex-pdf-tools-sync-view")))
  444. )
  445. )
  446. #+end_src
  447. For latex-preview-pane a patch might be necessary (as of 2017-10), see the issue [[https://github.com/jsinglet/latex-preview-pane/issues/37][here]]
  448. Update 2018-03: It seems to work without this patch. I will keep it here in case something breaks again.
  449. #+begin_src
  450. latex-preview-pane-update-p()
  451. --- (doc-view-revert-buffer nil t)
  452. +++ (revert-buffer-nil t 'preserve-modes)
  453. #+end_src
  454. After that M-x byte-compile-file
  455. #+begin_src emacs-lisp
  456. (use-package latex-preview-pane
  457. :ensure t
  458. )
  459. (setq auto-mode-alist
  460. (append '(("\\.tex$" . latex-mode)) auto-mode-alist))
  461. ;; one of these works
  462. (add-hook 'LaTeX-mode-hook 'latex-preview-pane-mode)
  463. (add-hook 'latex-mode-hook 'latex-preview-pane-mode)
  464. ;; necessary, because linum-mode isn't compatible and prints errors
  465. (add-hook 'pdf-view-mode-hook (lambda () (linum-mode -1)))
  466. #+end_src
  467. * Emails
  468. Currently following tools are required:
  469. - notmuch (edit, read, tag, delete emails)
  470. - isync /mbsync (fetch or sync emails)
  471. After setting up mbsync, notmuch must be configured. Execute "notmuch" from the command line to launch the setup wizard. After it, "notmuch new" to create a new database, which will index the available local e-mails.
  472. TODO:
  473. - setup of mbsync on linux
  474. - setup of notmuch on linux
  475. - shell script for installation of isync and notmuch
  476. - more config for notmuch?
  477. - hydra for notmuch?
  478. - maybe org-notmuch?
  479. - some way to refresh the notmuch db before I run notmuch?
  480. #+begin_src emacs-lisp
  481. (use-package notmuch
  482. :ensure t
  483. )
  484. #+end_src
  485. * Personal Finances
  486. I picked ledger for my personal accounting and will test if it's beneficial over gnucash.
  487. ..and don't activate the modules at work.
  488. #+begin_src emacs-lisp
  489. (unless (string-equal user-login-name "POH")
  490. (use-package ledger-mode
  491. :ensure t
  492. :mode ("\\.ledger$" . ledger-mode)
  493. :init
  494. (setq clear-whole-transactions t)
  495. )
  496. )
  497. #+end_src
  498. Ok, maybe beancount is better.
  499. Since there is no debian package, it is an option to install it via pip.
  500. I picked /opt for the installation path
  501. #+begin_src shell
  502. sudo su
  503. cd /opt
  504. python3 -m venv beancount
  505. source ./beancount/bin/activate
  506. pip3 install wheel
  507. pip3 install beancount
  508. deactivate
  509. #+end_src
  510. When using beancount, it will automatically pick the created virtual environment.
  511. Activate the beancount mode
  512. #+begin_src emacs-lisp
  513. (unless (string-equal user-login-name "POH")
  514. ;; (add-to-list 'package-archives
  515. ;; '("beancount" . "/opt/beancount/elisp") t)
  516. ; (use-package beancount
  517. ; :load-path "/opt/beancount/elisp/"
  518. ;; :ensure t
  519. ; :mode ("\\.beancount$" . beancount-mode)
  520. (use-package beancount
  521. :load-path "/home/marc/.emacs.d/elisp/"
  522. :mode ("\\.beancount$" . bean-mode)
  523. )
  524. (setenv "PATH"
  525. (concat
  526. "/opt/beancount/bin:"
  527. (getenv "PATH"))
  528. )
  529. (add-hook 'beancount-mode-hook 'company/beancount-mode-hook)
  530. )
  531. #+end_src
  532. For a nice frontend fava seems nice
  533. #+begin_src shell
  534. sudo su
  535. cd /opt
  536. python3 -m venv vava
  537. source ./vava/bin/activate
  538. pip3 install wheel
  539. pip3 install fava
  540. deactivate
  541. #+end_src
  542. Start fava with
  543. #+begin_src shell
  544. fava my_file.beancount
  545. #+end_src
  546. It is accessable on this URL: [[http://127.0.0.1:5000][Fava]]
  547. * Programming
  548. ** Common things
  549. List of plugins and settings which are shared between the language plugins
  550. Highlight whitespaces, tabs, empty lines.
  551. #+begin_src emacs-lisp
  552. (use-package whitespace
  553. :demand t
  554. :ensure nil
  555. :init
  556. (dolist (hook '(prog-mode-hook
  557. text-mode-hook
  558. conf-mode-hook))
  559. (add-hook hook #'whitespace-mode))
  560. ;; :hook ;;not working in use-package 2.3
  561. ;; ((prog-mode . whitespace-turn-on)
  562. ;; (text-mode . whitespace-turn-on))
  563. :config
  564. (setq-default whitespace-style '(face empty tab trailing))
  565. )
  566. #+end_src
  567. Disable Eldoc, it interferes with flycheck
  568. #+begin_src emacs-lisp
  569. (use-package eldoc
  570. :ensure nil
  571. :config
  572. (global-eldoc-mode -1)
  573. )
  574. #+end_src
  575. Colorize colors as text with their value
  576. #+begin_src emacs-lisp
  577. (use-package rainbow-mode
  578. :ensure t
  579. :init
  580. (add-hook 'prog-mode-hook 'rainbow-mode t)
  581. ;; :hook prog-mode ;; not working in use-package 2.3
  582. :config
  583. (setq-default rainbow-x-colors-major-mode-list '())
  584. )
  585. #+end_src
  586. Highlight parens etc. for improved readability
  587. #+begin_src emacs-lisp
  588. (use-package rainbow-delimiters
  589. :ensure t
  590. :config
  591. (add-hook 'prog-mode-hook 'rainbow-delimiters-mode)
  592. )
  593. #+end_src
  594. ** Smartparens
  595. Smartparens is a beast on its own, so it's worth having a dedicated section for it
  596. #+begin_src emacs-lisp
  597. (use-package smartparens
  598. :ensure t
  599. :diminish smartparens-mode
  600. :config
  601. (add-hook 'prog-mode-hook 'smartparens-mode)
  602. )
  603. #+end_src
  604. ** Git
  605. [[https://magit.vc/manual/magit/index.html][Link]]
  606. I want to do git stuff here, not in a separate terminal window
  607. Little crashcourse in magit:
  608. - magit-init to init a git project
  609. - magit-status (C-x g) to call the status window
  610. in status buffer:
  611. - s stage files
  612. - u unstage files
  613. - U unstage all files
  614. - a apply changed to staging
  615. - c c commit (type commit message, then C-c C-c to commit)
  616. - b b switch to another branch
  617. - P u git push
  618. - F u git pull
  619. #+begin_src emacs-lisp
  620. (use-package magit
  621. :ensure t
  622. :init
  623. ;; set git-path in work environment
  624. (if (string-equal user-login-name "POH")
  625. (setq magit-git-executable "P:/Eigene Dateien/Tools/Git/bin/git.exe")
  626. )
  627. :defer t
  628. :bind (("C-x g" . magit-status))
  629. )
  630. #+end_src
  631. Display line changes in gutter based on git history. Enable it everywhere
  632. [[https://github.com/syohex/emacs-git-gutter][Source]]
  633. #+begin_src emacs-lisp
  634. (use-package git-gutter
  635. :ensure t
  636. :config
  637. (global-git-gutter-mode t)
  638. :diminish git-gutter-mode
  639. )
  640. #+end_src
  641. Time machine lets me step through the history of a file as recorded in git.
  642. [[https://github.com/pidu/git-timemachine][Source]]
  643. #+begin_src emacs-lisp
  644. (use-package git-timemachine
  645. :ensure t
  646. )
  647. #+end_src
  648. ** Company Mode
  649. Complete Anything!
  650. Activate company and make it react nearly instantly
  651. #+begin_src emacs-lisp
  652. (use-package company
  653. :ensure t
  654. :config
  655. (setq-default company-minimum-prefix-length 1
  656. company-tooltip-align-annotation t
  657. company-tooltop-flip-when-above t
  658. company-show-numbers t
  659. company-idle-delay 0.1)
  660. ;; (define-key company-active-map (kbd "TAB") #'company-complete-selection)
  661. ;; (define-key company-active-map (kbd "RET") nil)
  662. (company-tng-configure-default)
  663. )
  664. #+end_src
  665. *** Company backend hooks
  666. Backend configuration for python-mode
  667. Common backends are:
  668. - company-files: files & directory
  669. - company-keywords: keywords
  670. - company-capf: ??
  671. - company-abbrev: ??
  672. - company-dabbrev: dynamic abbreviations
  673. - company-ispell: ??
  674. #+begin_src emacs-lisp
  675. (defun company/python-mode-hook()
  676. (set (make-local-variable 'company-backends)
  677. '((company-jedi company-dabbrev company-yasnippet) company-capf company-files))
  678. ;; '((company-jedi company-dabbrev) company-capf company-files))
  679. (company-mode t)
  680. )
  681. #+end_src
  682. (defun add-pcomplete-to-capf ()
  683. (add-hook 'completion-at-point-functions 'pcomplete-completions-at-point nil t))
  684. ;; (add-hook 'completion-at-point-functions 'pcomplete-completions-at-point nil t)
  685. (add-hook 'org-mode-hook #'add-pcomplete-to-capf)
  686. Backend for Orgmode
  687. #+begin_src emacs-lisp
  688. (defun company/org-mode-hook()
  689. (set (make-local-variable 'company-backends)
  690. '(company-capf company-files))
  691. (add-hook 'completion-at-point-functions 'pcomplete-completions-at-point nil t)
  692. (company-mode t)
  693. )
  694. #+end_src
  695. Backend configuration for lisp-mode
  696. #+begin_src emacs-lisp
  697. (defun company/elisp-mode-hook()
  698. (set (make-local-variable 'company-backends)
  699. '((company-elisp company-dabbrev) company-capf company-files))
  700. (company-mode t)
  701. )
  702. #+end_src
  703. Backend configuration for beancount
  704. #+begin_src emacs-lisp
  705. (defun company/beancount-mode-hook()
  706. (set (make-local-variable 'company-backends)
  707. '((company-dabbrev) company-capf company-files))
  708. (company-mode t)
  709. )
  710. #+end_src
  711. *** Misc Company packages
  712. Addon to sort suggestions by usage
  713. #+begin_src emacs-lisp
  714. (use-package company-statistics
  715. :ensure t
  716. :after company
  717. :config
  718. (company-statistics-mode 1)
  719. )
  720. #+end_src
  721. Get a popup with documentation of the completion candidate.
  722. For the popups the package pos-tip.el is used and automatically installed.
  723. [[https://github.com/expez/company-quickhelp][Company Quickhelp]]
  724. [[https://www.emacswiki.org/emacs/PosTip][See here for Pos-Tip details]]
  725. #+begin_src emacs-lisp
  726. (use-package company-quickhelp
  727. :ensure t
  728. :after company
  729. :config
  730. (company-quickhelp-mode 1)
  731. )
  732. #+end_src
  733. Maybe add [[https://github.com/hlissner/emacs-company-dict][company-dict]]? It's a dictionary based on major modes, plus it has Yasnippet integration.
  734. ** Projectile
  735. Brings search functions on project level
  736. #+begin_src emacs-lisp
  737. (use-package projectile
  738. :ensure t
  739. :defer t
  740. :bind
  741. (("C-c p p" . projectile-switch-project)
  742. ("C-c p s s" . projectile-ag))
  743. :init
  744. (setq-default
  745. projectile-cache-file (expand-file-name ".projectile-cache" user-emacs-directory)
  746. projectile-known-projects-file (expand-file-name
  747. ".projectile-bookmarks" user-emacs-directory))
  748. :config
  749. (projectile-mode t)
  750. (setq-default
  751. projectile-completion-system 'ivy
  752. projectile-enable-caching t
  753. projectile-mode-line '(:eval (projectile-project-name)))
  754. )
  755. #+end_src
  756. ** Yasnippet
  757. Snippets!
  758. TODO: yas-minor-mode? what's that?
  759. #+begin_src emacs-lisp
  760. (use-package yasnippet
  761. :ensure t
  762. :init
  763. (yas-global-mode)
  764. :mode ("\\.yasnippet" . snippet-mode)
  765. :config
  766. (setq yas-snippet-dirs (concat user-emacs-directory "snippets"))
  767. )
  768. #+end_src
  769. ** Lisp
  770. #+begin_src emacs-lisp
  771. (add-hook 'emacs-lisp-mode-hook 'company/elisp-mode-hook)
  772. #+end_src
  773. ** Python
  774. Systemwide following packages need to be installed:
  775. - venv
  776. The virtual environments need to have following modules installed:
  777. - jedi
  778. - epc
  779. - pylint
  780. #+begin_src emacs-lisp
  781. (use-package flycheck
  782. :ensure t
  783. :init
  784. (setq flycheck-emacs-lisp-load-path 'inherit)
  785. (add-hook 'after-init-hook #'global-flycheck-mode)
  786. (add-hook 'python-mode-hook (lambda ()
  787. (semantic-mode 1)
  788. (flycheck-select-checker 'python-pylint)))
  789. )
  790. #+end_src
  791. Automatically start python-mode when opening a .py-file.
  792. Not sure if python.el is better than python-mode.el.
  793. See [[https://github.com/jorgenschaefer/elpy/issues/887][here]] for info about ~python-shell-completion-native-enable~.
  794. The custom function is to run inferiour processes (do I really need that?), see [[https://emacs.stackexchange.com/questions/16361/how-to-automatically-run-inferior-process-when-loading-major-mode][here]].
  795. Also limit the completion backends to those which make sense in Python.
  796. #+begin_src emacs-lisp
  797. (use-package python
  798. :mode ("\\.py\\'" . python-mode)
  799. :interpreter ("python" . python-mode)
  800. :init
  801. (add-hook 'python-mode-hook 'company/python-mode-hook)
  802. :config
  803. (setq python-shell-completion-native-enable nil)
  804. )
  805. #+end_src
  806. Jedi is a backend for python autocompletion and needs to be installed on the server:
  807. - pip install jedi
  808. Code checks need to be installed, too:
  809. - pip install flake8
  810. #+begin_src emacs-lisp
  811. (use-package company-jedi
  812. :defer t
  813. ;; :after company
  814. :ensure t
  815. :config
  816. (setq jedi:environment-virtualenv (list (expand-file-name "~/Archiv/Programmierprojekte/Python/virtualenv/")))
  817. (setq jedi:python-environment-directory (list (expand-file-name "~/Archiv/Programmierprojekte/Python/virtualenv/")))
  818. (add-hook 'python-mode-hook 'jedi:setup)
  819. (setq jedi:complete-on-dot t)
  820. (setq jedi:use-shortcuts t)
  821. ;; (add-hook 'python-mode-hook 'company/python-mode-hook)
  822. )
  823. #+end_src
  824. A wrapper to handle virtual environments.
  825. I strongly recommend to install virtual environments on the terminal, not through this wrapper, but changing venvs is fine.
  826. TODO: automatically start an inferior python process or switch to it if already created
  827. #+begin_src emacs-lisp
  828. (use-package pyvenv
  829. :ensure t
  830. :init
  831. (setenv "WORKON_HOME" (expand-file-name "~/Archiv/Programmierprojekte/Python/virtualenv/"))
  832. :config
  833. (pyvenv-mode t)
  834. (defun my/post-activate-hook()
  835. (setq jedi:environment-root pyvenv-virtual-env)
  836. (setq jedi:environment-virtualenv pyvenv-virtual-env)
  837. (setq jedi:tooltip-method '(nil)) ;; variants: nil or pos-tip and/or popup
  838. (setq python-shell-virtualenv-root pyvenv-virtual-env)
  839. ;; default traceback, other option M-x jedi:toggle-log-traceback
  840. ;; traceback is in jedi:pop-to-epc-buffer
  841. (jedi:setup)
  842. (company/python-mode-hook)
  843. (setq jedi:server-args '("--log-traceback")))
  844. ;; (add-to-list 'company-backends 'company-jedi)
  845. ;; (add-to-list 'company-backends 'company-anaconda)
  846. ;; (lambda ()
  847. ;; (set (make-local-variable 'company-backends)
  848. ;; '((company-jedi company-dabbrev) company-capf company-files)))
  849. ;; (setq flycheck-checker 'python-pylint))
  850. ;; (flycheck-select-checker 'python-pylint))
  851. ;; (setq flycheck-checker 'python-flake8)
  852. (add-hook 'pyvenv-post-activate-hooks 'my/post-activate-hook)
  853. )
  854. #+end_src
  855. I want Emacs to automatically start the proper virtual environment.
  856. Required is a .python-version file with, content in the first line being /path/to/virtualenv/
  857. [[https://github.com/marcwebbie/auto-virtualenv][Github source]]
  858. Depends on pyvenv
  859. #+begin_src emacs-lisp
  860. (use-package auto-virtualenv
  861. :ensure t
  862. ;; :after pyvenv
  863. ;; :defer t
  864. :init
  865. (add-hook 'python-mode-hook 'auto-virtualenv-set-virtualenv)
  866. ;; activate on changing buffers
  867. ;; (add-hook 'window-configuration-change-hook 'auto-virtualenv-set-virtualenv)
  868. ;; activate on focus in
  869. ;; (add-hook 'focus-in-hook 'auto-virtualenv-set-virtualenv)
  870. )
  871. #+end_src
  872. Anaconda test
  873. begin_src emacs-lisp
  874. (use-package anaconda-mode
  875. :ensure t
  876. :defer t
  877. :init
  878. (add-hook 'python-mode-hook 'anaconda-mode)
  879. ;; (add-hook 'python-mode-hook 'anaconda-eldoc-mode)
  880. :config
  881. (setq anaconda-eldoc-mode 1)
  882. )
  883. end_src
  884. begin_src emacs-lisp
  885. (use-package company-anaconda
  886. :ensure t
  887. :defer t
  888. :init
  889. (defun my/company-anaconda-hook()
  890. (add-to-list 'company-backends 'company-anaconda))
  891. (add-hook 'python-mode-hook 'my/company-anaconda-hook)
  892. )
  893. end_src
  894. * Hydra
  895. Hydra allows grouping of commands
  896. #+begin_src emacs-lisp
  897. (use-package hydra
  898. :ensure t
  899. :bind
  900. ("C-c f" . hydra-flycheck/body)
  901. :config
  902. (setq-default hydra-default-hint nil)
  903. )
  904. #+end_src
  905. ** Hydra Flycheck
  906. Flycheck is necessary, obviously
  907. #+begin_src emacs-lisp
  908. (defhydra hydra-flycheck (:color blue)
  909. "
  910. ^
  911. ^Flycheck^ ^Errors^ ^Checker^
  912. ^────────^──────────^──────^────────────^───────^───────────
  913. _q_ quit _<_ previous _?_ describe
  914. _m_ manual _>_ next _d_ disable
  915. _v_ verify setup _f_ check _s_ select
  916. ^^ ^^ ^^
  917. "
  918. ("q" nil)
  919. ("<" flycheck-previous-error :color red)
  920. (">" flycheck-next-error :color red)
  921. ("?" flycheck-describe-checker)
  922. ("d" flycheck-disable-checker)
  923. ("f" flycheck-buffer)
  924. ("m" flycheck-manual)
  925. ("s" flycheck-select-checker)
  926. ("v" flycheck-verify-setup)
  927. )
  928. #+end_src
  929. * Treemacs
  930. A file manager comparable to neotree.
  931. [[https://github.com/Alexander-Miller/treemacs][Github]]
  932. It has some requirements, which gets used here anyway:
  933. - ace-window
  934. - hydra
  935. - projectile
  936. - python
  937. I copied the configuration example from the github site.
  938. No idea what this executable-find is about.
  939. TODO check it out!
  940. #+begin_src emacs-lisp
  941. (use-package treemacs
  942. :ensure t
  943. :defer t
  944. :config
  945. (setq treemacs-change-root-without-asking nil
  946. treemacs-collapse-dirs (if (executable-find "python") 3 0)
  947. treemacs-file-event-delay 5000
  948. treemacs-follow-after-init t
  949. treemacs-follow-recenter-distance 0.1
  950. treemacs-goto-tag-strategy 'refetch-index
  951. treemacs-indentation 2
  952. treemacs-indentation-string " "
  953. treemacs-is-never-other-window nil
  954. treemacs-never-persist nil
  955. treemacs-no-png-images nil
  956. treemacs-recenter-after-file-follow nil
  957. treemacs-recenter-after-tag-follow nil
  958. treemacs-show-hidden-files t
  959. treemacs-silent-filewatch nil
  960. treemacs-silent-refresh nil
  961. treemacs-sorting 'alphabetic-desc
  962. treemacs-tag-follow-cleanup t
  963. treemacs-tag-follow-delay 1.5
  964. treemacs-width 35)
  965. (treemacs-follow-mode t)
  966. (treemacs-filewatch-mode t)
  967. (pcase (cons (not (null (executable-find "git")))
  968. (not (null (executable-find "python3"))))
  969. (`(t . t)
  970. (treemacs-git-mode 'extended))
  971. (`(t . _)
  972. (treemacs-git-mode 'simple)))
  973. :bind
  974. (:map global-map
  975. ([f8] . treemacs-toggle))
  976. )
  977. #+end_src
  978. Treemacs-projectile is useful for uhh.. TODO explain!
  979. #+begin_src emacs-lisp
  980. (use-package treemacs-projectile
  981. :ensure t
  982. :defer t
  983. :config
  984. (setq treemacs-header-function #'treemacs-projectile-create-header)
  985. )
  986. #+end_src
  987. TODO
  988. Hydrastuff or keybindings for functions:
  989. - treemacs-projectile
  990. - treemacs-projectile-toggle
  991. - treemacs-toggle
  992. - treemacs-bookmark
  993. - treemacs-find-file
  994. - treemacs-find-tag
  995. * Window Handling
  996. Some tools to easen the navigation, creation and deletion of windows
  997. ** Ace-Window
  998. #+begin_src emacs-lisp
  999. (use-package ace-window
  1000. :ensure t
  1001. :init
  1002. (global-set-key (kbd "C-x o") 'ace-window)
  1003. )
  1004. #+end_src
  1005. ** Windmove
  1006. Windmove easens the navigation between windows.
  1007. Here we are setting the default keybindings (shift+arrow)
  1008. CURRENTLY NOT WORKING, defaults are blocked.
  1009. Also not sure if necessary when using ace-window.
  1010. #+begin_src emacs-lisp
  1011. (use-package windmove
  1012. :ensure t
  1013. :config
  1014. (windmove-default-keybindings)
  1015. )
  1016. #+end_src
  1017. * Quality of Life