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.

1212 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
  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. (unless (string-equal user-login-name "POH")
  482. (use-package notmuch
  483. :ensure t
  484. )
  485. )
  486. #+end_src
  487. * Personal Finances
  488. I picked ledger for my personal accounting and will test if it's beneficial over gnucash.
  489. ..and don't activate the modules at work.
  490. #+begin_src emacs-lisp
  491. (unless (string-equal user-login-name "POH")
  492. (use-package ledger-mode
  493. :ensure t
  494. :mode ("\\.ledger$" . ledger-mode)
  495. :init
  496. (setq clear-whole-transactions t)
  497. )
  498. )
  499. #+end_src
  500. Ok, maybe beancount is better.
  501. Since there is no debian package, it is an option to install it via pip.
  502. I picked /opt for the installation path
  503. #+begin_src shell
  504. sudo su
  505. cd /opt
  506. python3 -m venv beancount
  507. source ./beancount/bin/activate
  508. pip3 install wheel
  509. pip3 install beancount
  510. deactivate
  511. #+end_src
  512. When using beancount, it will automatically pick the created virtual environment.
  513. Activate the beancount mode
  514. #+begin_src emacs-lisp
  515. (unless (string-equal user-login-name "POH")
  516. ;; (add-to-list 'package-archives
  517. ;; '("beancount" . "/opt/beancount/elisp") t)
  518. (use-package beancount
  519. :load-path "/opt/beancount/elisp/"
  520. ;; :ensure t
  521. :mode ("\\.beancount$" . beancount-mode)
  522. )
  523. (setenv "PATH"
  524. (concat
  525. "/opt/beancount/bin:"
  526. (getenv "PATH"))
  527. )
  528. (add-hook 'beancount-mode-hook 'company/beancount-mode-hook)
  529. )
  530. #+end_src
  531. For a nice frontend fava seems nice
  532. #+begin_src shell
  533. sudo su
  534. cd /opt
  535. python3 -m venv vava
  536. source ./vava/bin/activate
  537. pip3 install wheel
  538. pip3 install fava
  539. deactivate
  540. #+end_src
  541. Start fava with
  542. #+begin_src shell
  543. fava my_file.beancount
  544. #+end_src
  545. It is accessable on this URL: [[http://127.0.0.1:5000][Fava]]
  546. * Programming
  547. ** Common things
  548. List of plugins and settings which are shared between the language plugins
  549. Highlight whitespaces, tabs, empty lines.
  550. #+begin_src emacs-lisp
  551. (use-package whitespace
  552. :demand t
  553. :ensure nil
  554. :init
  555. (dolist (hook '(prog-mode-hook
  556. text-mode-hook
  557. conf-mode-hook))
  558. (add-hook hook #'whitespace-mode))
  559. ;; :hook ;;not working in use-package 2.3
  560. ;; ((prog-mode . whitespace-turn-on)
  561. ;; (text-mode . whitespace-turn-on))
  562. :config
  563. (setq-default whitespace-style '(face empty tab trailing))
  564. )
  565. #+end_src
  566. Disable Eldoc, it interferes with flycheck
  567. #+begin_src emacs-lisp
  568. (use-package eldoc
  569. :ensure nil
  570. :config
  571. (global-eldoc-mode -1)
  572. )
  573. #+end_src
  574. Colorize colors as text with their value
  575. #+begin_src emacs-lisp
  576. (use-package rainbow-mode
  577. :ensure t
  578. :init
  579. (add-hook 'prog-mode-hook 'rainbow-mode t)
  580. ;; :hook prog-mode ;; not working in use-package 2.3
  581. :config
  582. (setq-default rainbow-x-colors-major-mode-list '())
  583. )
  584. #+end_src
  585. Highlight parens etc. for improved readability
  586. #+begin_src emacs-lisp
  587. (use-package rainbow-delimiters
  588. :ensure t
  589. :config
  590. (add-hook 'prog-mode-hook 'rainbow-delimiters-mode)
  591. )
  592. #+end_src
  593. ** Smartparens
  594. Smartparens is a beast on its own, so it's worth having a dedicated section for it
  595. #+begin_src emacs-lisp
  596. (use-package smartparens
  597. :ensure t
  598. :diminish smartparens-mode
  599. :config
  600. (add-hook 'prog-mode-hook 'smartparens-mode)
  601. )
  602. #+end_src
  603. ** Git
  604. [[https://magit.vc/manual/magit/index.html][Link]]
  605. I want to do git stuff here, not in a separate terminal window
  606. Little crashcourse in magit:
  607. - magit-init to init a git project
  608. - magit-status (C-x g) to call the status window
  609. in status buffer:
  610. - s stage files
  611. - u unstage files
  612. - U unstage all files
  613. - a apply changed to staging
  614. - c c commit (type commit message, then C-c C-c to commit)
  615. - b b switch to another branch
  616. - P u git push
  617. - F u git pull
  618. #+begin_src emacs-lisp
  619. (use-package magit
  620. :ensure t
  621. :init
  622. ;; set git-path in work environment
  623. (if (string-equal user-login-name "POH")
  624. (setq magit-git-executable "P:/Eigene Dateien/Tools/Git/bin/git.exe")
  625. )
  626. :defer t
  627. :bind (("C-x g" . magit-status))
  628. )
  629. #+end_src
  630. Display line changes in gutter based on git history. Enable it everywhere
  631. [[https://github.com/syohex/emacs-git-gutter][Source]]
  632. #+begin_src emacs-lisp
  633. (use-package git-gutter
  634. :ensure t
  635. :config
  636. (global-git-gutter-mode t)
  637. :diminish git-gutter-mode
  638. )
  639. #+end_src
  640. Time machine lets me step through the history of a file as recorded in git.
  641. [[https://github.com/pidu/git-timemachine][Source]]
  642. #+begin_src emacs-lisp
  643. (use-package git-timemachine
  644. :ensure t
  645. )
  646. #+end_src
  647. ** Company Mode
  648. Complete Anything!
  649. Activate company and make it react nearly instantly
  650. #+begin_src emacs-lisp
  651. (use-package company
  652. :ensure t
  653. :config
  654. (setq-default company-minimum-prefix-length 1
  655. company-tooltip-align-annotation t
  656. company-tooltop-flip-when-above t
  657. company-show-numbers t
  658. company-idle-delay 0.1)
  659. ;; (define-key company-active-map (kbd "TAB") #'company-complete-selection)
  660. ;; (define-key company-active-map (kbd "RET") nil)
  661. (company-tng-configure-default)
  662. )
  663. #+end_src
  664. *** Company backend hooks
  665. Backend configuration for python-mode
  666. Common backends are:
  667. - company-files: files & directory
  668. - company-keywords: keywords
  669. - company-capf: ??
  670. - company-abbrev: ??
  671. - company-dabbrev: dynamic abbreviations
  672. - company-ispell: ??
  673. #+begin_src emacs-lisp
  674. (defun company/python-mode-hook()
  675. (set (make-local-variable 'company-backends)
  676. '((company-jedi company-dabbrev company-yasnippet) company-capf company-files))
  677. ;; '((company-jedi company-dabbrev) company-capf company-files))
  678. (company-mode t)
  679. )
  680. #+end_src
  681. (defun add-pcomplete-to-capf ()
  682. (add-hook 'completion-at-point-functions 'pcomplete-completions-at-point nil t))
  683. ;; (add-hook 'completion-at-point-functions 'pcomplete-completions-at-point nil t)
  684. (add-hook 'org-mode-hook #'add-pcomplete-to-capf)
  685. Backend for Orgmode
  686. #+begin_src emacs-lisp
  687. (defun company/org-mode-hook()
  688. (set (make-local-variable 'company-backends)
  689. '(company-capf company-files))
  690. (add-hook 'completion-at-point-functions 'pcomplete-completions-at-point nil t)
  691. (company-mode t)
  692. )
  693. #+end_src
  694. Backend configuration for lisp-mode
  695. #+begin_src emacs-lisp
  696. (defun company/elisp-mode-hook()
  697. (set (make-local-variable 'company-backends)
  698. '((company-elisp company-dabbrev) company-capf company-files))
  699. (company-mode t)
  700. )
  701. #+end_src
  702. Backend configuration for beancount
  703. #+begin_src emacs-lisp
  704. (defun company/beancount-mode-hook()
  705. (set (make-local-variable 'company-backends)
  706. '((company-dabbrev) company-capf company-files))
  707. (company-mode t)
  708. )
  709. #+end_src
  710. *** Misc Company packages
  711. Addon to sort suggestions by usage
  712. #+begin_src emacs-lisp
  713. (use-package company-statistics
  714. :ensure t
  715. :after company
  716. :config
  717. (company-statistics-mode 1)
  718. )
  719. #+end_src
  720. Get a popup with documentation of the completion candidate.
  721. For the popups the package pos-tip.el is used and automatically installed.
  722. [[https://github.com/expez/company-quickhelp][Company Quickhelp]]
  723. [[https://www.emacswiki.org/emacs/PosTip][See here for Pos-Tip details]]
  724. #+begin_src emacs-lisp
  725. (use-package company-quickhelp
  726. :ensure t
  727. :after company
  728. :config
  729. (company-quickhelp-mode 1)
  730. )
  731. #+end_src
  732. Maybe add [[https://github.com/hlissner/emacs-company-dict][company-dict]]? It's a dictionary based on major modes, plus it has Yasnippet integration.
  733. ** Projectile
  734. Brings search functions on project level
  735. #+begin_src emacs-lisp
  736. (use-package projectile
  737. :ensure t
  738. :defer t
  739. :bind
  740. (("C-c p p" . projectile-switch-project)
  741. ("C-c p s s" . projectile-ag))
  742. :init
  743. (setq-default
  744. projectile-cache-file (expand-file-name ".projectile-cache" user-emacs-directory)
  745. projectile-known-projects-file (expand-file-name
  746. ".projectile-bookmarks" user-emacs-directory))
  747. :config
  748. (projectile-mode t)
  749. (setq-default
  750. projectile-completion-system 'ivy
  751. projectile-enable-caching t
  752. projectile-mode-line '(:eval (projectile-project-name)))
  753. )
  754. #+end_src
  755. ** Yasnippet
  756. Snippets!
  757. TODO: yas-minor-mode? what's that?
  758. #+begin_src emacs-lisp
  759. (use-package yasnippet
  760. :ensure t
  761. :init
  762. (yas-global-mode)
  763. :mode ("\\.yasnippet" . snippet-mode)
  764. :config
  765. (setq yas-snippet-dirs (concat user-emacs-directory "snippets"))
  766. )
  767. #+end_src
  768. ** Lisp
  769. #+begin_src emacs-lisp
  770. (add-hook 'emacs-lisp-mode-hook 'company/elisp-mode-hook)
  771. #+end_src
  772. ** Python
  773. Systemwide following packages need to be installed:
  774. - venv
  775. The virtual environments need to have following modules installed:
  776. - jedi
  777. - epc
  778. - pylint
  779. #+begin_src emacs-lisp
  780. (use-package flycheck
  781. :ensure t
  782. :init
  783. (add-hook 'after-init-hook #'global-flycheck-mode)
  784. (add-hook 'python-mode-hook (lambda ()
  785. (semantic-mode 1)
  786. (flycheck-select-checker 'python-pylint)))
  787. )
  788. #+end_src
  789. Automatically start python-mode when opening a .py-file.
  790. Not sure if python.el is better than python-mode.el.
  791. See [[https://github.com/jorgenschaefer/elpy/issues/887][here]] for info about ~python-shell-completion-native-enable~.
  792. 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]].
  793. Also limit the completion backends to those which make sense in Python.
  794. #+begin_src emacs-lisp
  795. (use-package python
  796. :mode ("\\.py\\'" . python-mode)
  797. :interpreter ("python" . python-mode)
  798. :init
  799. (add-hook 'python-mode-hook 'company/python-mode-hook)
  800. :config
  801. (setq python-shell-completion-native-enable nil)
  802. )
  803. #+end_src
  804. Jedi is a backend for python autocompletion and needs to be installed on the server:
  805. - pip install jedi
  806. Code checks need to be installed, too:
  807. - pip install flake8
  808. #+begin_src emacs-lisp
  809. (use-package company-jedi
  810. :defer t
  811. ;; :after company
  812. :ensure t
  813. :config
  814. (setq jedi:environment-virtualenv (list (expand-file-name "~/Archiv/Programmierprojekte/Python/virtualenv/")))
  815. (setq jedi:python-environment-directory (list (expand-file-name "~/Archiv/Programmierprojekte/Python/virtualenv/")))
  816. (add-hook 'python-mode-hook 'jedi:setup)
  817. (setq jedi:complete-on-dot t)
  818. (setq jedi:use-shortcuts t)
  819. ;; (add-hook 'python-mode-hook 'company/python-mode-hook)
  820. )
  821. #+end_src
  822. A wrapper to handle virtual environments.
  823. I strongly recommend to install virtual environments on the terminal, not through this wrapper, but changing venvs is fine.
  824. TODO: automatically start an inferior python process or switch to it if already created
  825. #+begin_src emacs-lisp
  826. (use-package pyvenv
  827. :ensure t
  828. :init
  829. (setenv "WORKON_HOME" (expand-file-name "~/Archiv/Programmierprojekte/Python/virtualenv/"))
  830. :config
  831. (pyvenv-mode t)
  832. (defun my/post-activate-hook()
  833. (setq jedi:environment-root pyvenv-virtual-env)
  834. (setq jedi:environment-virtualenv pyvenv-virtual-env)
  835. (setq jedi:tooltip-method '(nil)) ;; variants: nil or pos-tip and/or popup
  836. (setq python-shell-virtualenv-root pyvenv-virtual-env)
  837. ;; default traceback, other option M-x jedi:toggle-log-traceback
  838. ;; traceback is in jedi:pop-to-epc-buffer
  839. (jedi:setup)
  840. (company/python-mode-hook)
  841. (setq jedi:server-args '("--log-traceback")))
  842. ;; (add-to-list 'company-backends 'company-jedi)
  843. ;; (add-to-list 'company-backends 'company-anaconda)
  844. ;; (lambda ()
  845. ;; (set (make-local-variable 'company-backends)
  846. ;; '((company-jedi company-dabbrev) company-capf company-files)))
  847. ;; (setq flycheck-checker 'python-pylint))
  848. ;; (flycheck-select-checker 'python-pylint))
  849. ;; (setq flycheck-checker 'python-flake8)
  850. (add-hook 'pyvenv-post-activate-hooks 'my/post-activate-hook)
  851. )
  852. #+end_src
  853. I want Emacs to automatically start the proper virtual environment.
  854. Required is a .python-version file with, content in the first line being /path/to/virtualenv/
  855. [[https://github.com/marcwebbie/auto-virtualenv][Github source]]
  856. Depends on pyvenv
  857. #+begin_src emacs-lisp
  858. (use-package auto-virtualenv
  859. :ensure t
  860. ;; :after pyvenv
  861. ;; :defer t
  862. :init
  863. (add-hook 'python-mode-hook 'auto-virtualenv-set-virtualenv)
  864. ;; activate on changing buffers
  865. ;; (add-hook 'window-configuration-change-hook 'auto-virtualenv-set-virtualenv)
  866. ;; activate on focus in
  867. ;; (add-hook 'focus-in-hook 'auto-virtualenv-set-virtualenv)
  868. )
  869. #+end_src
  870. Anaconda test
  871. begin_src emacs-lisp
  872. (use-package anaconda-mode
  873. :ensure t
  874. :defer t
  875. :init
  876. (add-hook 'python-mode-hook 'anaconda-mode)
  877. ;; (add-hook 'python-mode-hook 'anaconda-eldoc-mode)
  878. :config
  879. (setq anaconda-eldoc-mode 1)
  880. )
  881. end_src
  882. begin_src emacs-lisp
  883. (use-package company-anaconda
  884. :ensure t
  885. :defer t
  886. :init
  887. (defun my/company-anaconda-hook()
  888. (add-to-list 'company-backends 'company-anaconda))
  889. (add-hook 'python-mode-hook 'my/company-anaconda-hook)
  890. )
  891. end_src
  892. * Hydra
  893. Hydra allows grouping of commands
  894. #+begin_src emacs-lisp
  895. (use-package hydra
  896. :ensure t
  897. :bind
  898. ("C-c f" . hydra-flycheck/body)
  899. :config
  900. (setq-default hydra-default-hint nil)
  901. )
  902. #+end_src
  903. ** Hydra Flycheck
  904. Flycheck is necessary, obviously
  905. #+begin_src emacs-lisp
  906. (defhydra hydra-flycheck (:color blue)
  907. "
  908. ^
  909. ^Flycheck^ ^Errors^ ^Checker^
  910. ^────────^──────────^──────^────────────^───────^───────────
  911. _q_ quit _<_ previous _?_ describe
  912. _m_ manual _>_ next _d_ disable
  913. _v_ verify setup _f_ check _s_ select
  914. ^^ ^^ ^^
  915. "
  916. ("q" nil)
  917. ("<" flycheck-previous-error :color red)
  918. (">" flycheck-next-error :color red)
  919. ("?" flycheck-describe-checker)
  920. ("d" flycheck-disable-checker)
  921. ("f" flycheck-buffer)
  922. ("m" flycheck-manual)
  923. ("s" flycheck-select-checker)
  924. ("v" flycheck-verify-setup)
  925. )
  926. #+end_src
  927. * Treemacs
  928. A file manager comparable to neotree.
  929. [[https://github.com/Alexander-Miller/treemacs][Github]]
  930. It has some requirements, which gets used here anyway:
  931. - ace-window
  932. - hydra
  933. - projectile
  934. - python
  935. I copied the configuration example from the github site.
  936. No idea what this executable-find is about.
  937. TODO check it out!
  938. #+begin_src emacs-lisp
  939. (use-package treemacs
  940. :ensure t
  941. :defer t
  942. :config
  943. (setq treemacs-change-root-without-asking nil
  944. treemacs-collapse-dirs (if (executable-find "python") 3 0)
  945. treemacs-file-event-delay 5000
  946. treemacs-follow-after-init t
  947. treemacs-follow-recenter-distance 0.1
  948. treemacs-goto-tag-strategy 'refetch-index
  949. treemacs-indentation 2
  950. treemacs-indentation-string " "
  951. treemacs-is-never-other-window nil
  952. treemacs-never-persist nil
  953. treemacs-no-png-images nil
  954. treemacs-recenter-after-file-follow nil
  955. treemacs-recenter-after-tag-follow nil
  956. treemacs-show-hidden-files t
  957. treemacs-silent-filewatch nil
  958. treemacs-silent-refresh nil
  959. treemacs-sorting 'alphabetic-desc
  960. treemacs-tag-follow-cleanup t
  961. treemacs-tag-follow-delay 1.5
  962. treemacs-width 35)
  963. (treemacs-follow-mode t)
  964. (treemacs-filewatch-mode t)
  965. (pcase (cons (not (null (executable-find "git")))
  966. (not (null (executable-find "python3"))))
  967. (`(t . t)
  968. (treemacs-git-mode 'extended))
  969. (`(t . _)
  970. (treemacs-git-mode 'simple)))
  971. :bind
  972. (:map global-map
  973. ([f8] . treemacs-toggle))
  974. )
  975. #+end_src
  976. Treemacs-projectile is useful for uhh.. TODO explain!
  977. #+begin_src emacs-lisp
  978. (use-package treemacs-projectile
  979. :ensure t
  980. :defer t
  981. :config
  982. (setq treemacs-header-function #'treemacs-projectile-create-header)
  983. )
  984. #+end_src
  985. TODO
  986. Hydrastuff or keybindings for functions:
  987. - treemacs-projectile
  988. - treemacs-projectile-toggle
  989. - treemacs-toggle
  990. - treemacs-bookmark
  991. - treemacs-find-file
  992. - treemacs-find-tag
  993. * Window Handling
  994. Some tools to easen the navigation, creation and deletion of windows
  995. ** Ace-Window
  996. #+begin_src emacs-lisp
  997. (use-package ace-window
  998. :ensure t
  999. :init
  1000. (global-set-key (kbd "C-x o") 'ace-window)
  1001. )
  1002. #+end_src
  1003. ** Windmove
  1004. Windmove easens the navigation between windows.
  1005. Here we are setting the default keybindings (shift+arrow)
  1006. CURRENTLY NOT WORKING, defaults are blocked.
  1007. Also not sure if necessary when using ace-window.
  1008. #+begin_src emacs-lisp
  1009. (use-package windmove
  1010. :ensure t
  1011. :config
  1012. (windmove-default-keybindings)
  1013. )
  1014. #+end_src
  1015. * Quality of Life