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.

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