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.

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