]> git.vanrenterghem.biz Git - Dotty.git/blob - emacs/.emacs.d/init.el
999e152a686e0cc4098d03d3500ad860856ec371
[Dotty.git] / emacs / .emacs.d / init.el
1 ;; Added by Package.el.  This must come before configurations of
2 ;; installed packages.  Don't delete this line.  If you don't want it,
3 ;; just comment it out by adding a semicolon to the start of the line.
4 ;; You may delete these explanatory comments.
5 (package-initialize)
7 (add-to-list 'load-path "~/.emacs.d/lisp/")
9 (tool-bar-mode -1)
11 ;; Configure printing using CUPS network printer
12 (setq lpr-switches
13       (append '("-o raw")
14               lpr-switches))
16 ;; Enable the melpa archive for packages
17 (use-package package
18   :config
19   (setq package-enable-at-startup nil)
20   (add-to-list 'package-archives '("melpa" . "https://melpa.org/packages/") t)
21   (add-to-list 'package-archives '("org" . "http://orgmode.org/elpa/") t)
22   (add-to-list 'package-archives
23                '("elpy" . "http://jorgenschaefer.github.io/packages/")))
25 (use-package system-packages
26   :ensure t)
28 (use-package modus-themes
29   :ensure t
30   :demand t ;; Without this, the theme load is deferred due to the
31             ;; bind keyword below
32   :init
33   ;; Add all customisation prior to loading the themes
34   (setq modus-themes-mixed-fonts t)
35   :config
36   (modus-themes-select 'modus-vivendi-tinted)
37   (variable-pitch-mode)
38   :bind ("<f5>" . modus-themes-toggle))
40 (use-package orderless
41   :ensure t
42   :config
43   (setq completion-styles '(orderless basic)
44         completion-category-overrides '((file (styles basic partial-completion)))))
46 ;; follow links to version-controlled files without confirming
47 vc-follow-symlinks t
49 ;; ESS - for working in R
50 (autoload 'R-mode "ess-site.el" "Major mode for editing R source." t)
51 (setq load-path (cons "/usr/share/emacs/site-lisp/ess" load-path))
52 (load "/usr/share/emacs/site-lisp/ess/lisp/ess-site")
53 (setq inferior-julia-program-name "/usr/bin/julia")
55 ;; enable autocomplete
56 (use-package company
57   :ensure t
58   :bind(:map company-active-map
59              ("<return>" . nil)
60              ("RET" . nil)
61              ("C-<return>" . company-complete-selection)
62              ([tab]    . company-complete-common)            
63              ("TAB"    . company-complete-common))
64   :config
65   (global-company-mode 1))
67 (use-package org
68   :ensure t
69   :after
70   denote
71   :bind
72     (("C-c c" . org-capture)
73      ("C-c l" . org-store-link))
74     :custom
75     (org-default-notes-file "~/Nextcloud/notes/inbox.org")
76     (org-agenda-files `(,org-default-notes-file))
77     (org-capture-bookmark nil)
78     ;; Capture templates
79     (org-capture-templates
80      '(("f" "Fleeting note" item
81         (file+headline org-default-notes-file "Notes")
82         "- %?\nEntered on %U\n  %i\n  %a")
83        ("p" "Permanent note" plain
84         (file denote-last-path)
85         #'denote-org-capture
86         :no-save t
87         :immediate-finish nil
88         :kill-buffer t
89         :jump-to-captured t)
90        ("t" "New task" entry
91         (file+headline org-default-notes-file "Tasks")
92         "* TODO %i%?")))
93   :config
94   ;; Automatically flow lines based on window width and use
95   ;; variable width fonts in org-mode.
96   (add-hook 'org-mode-hook 'visual-line-mode)
97   (add-hook 'org-mode-hook 'variable-pitch-mode)
98   ;; org-mode support for R and LaTeX
99   (org-babel-do-load-languages
100    'org-babel-load-languages
101    '((R . t)
102      (latex . t)))
103   ;; Security risk - This is somewhat ill-advised it appears
104   (setq org-confirm-babel-evaluate nil))
105         
106 (use-package tex
107   :ensure auctex
108   :config
109   (setq TeX-auto-save t
110         TeX-parse-self t
111         TeX-view-program-selection
112    '(((output-dvi has-no-display-manager)
113       "dvi2tty")
114      ((output-dvi style-pstricks)
115       "dvips and gv")
116      (output-dvi "xdvi")
117      (output-pdf "PDF Tools")
118      (output-html "xdg-open"))))
119 ;; (load "preview-latex.el" nil t t)
122 ;; Automatically switch to various modes
123 (setq auto-mode-alist
124     '(("\\.mdwn\\'" . markdown-mode)
125       ("\\.md\\'" . markdown-mode)
126       ("\\.yarn\\'" . markdown-mode)
127       ("\\.js\\'" . js-mode)
128       ("\\.json\\'" . js-mode)
129       ("Makefile" . makefile-mode)
130       ("README" . markdown-mode)
131       ("NEWS" . markdown-mode)
132       ("COMMIT_EDITMSG\\'" . text-mode)
133       ("\\.html\\'" . html-mode)
134       ("\\.css\\'" . css-mode)
135       ("\\.yaml\\'" . yaml-mode)
136       ("\\.yml\\'" . yaml-mode)
137       ("\\.ick\\'" . yaml-mode)
138       ("\\.py\\'" . python-mode)
139       ("\\.R\\'" . R-mode)
140       ("\\.org\\'" . org-mode)
141       ("\\.tex\\'" . latex-mode)
142       ("\\.sh\\'" . shell-script-mode)
143       ("\\.hs\\'" . haskell-mode)
144       ("\\.el\\'" . emacs-lisp-mode)))
147 (custom-set-variables
148  ;; custom-set-variables was added by Custom.
149  ;; If you edit it by hand, you could mess it up, so be careful.
150  ;; Your init file should contain only one such instance.
151  ;; If there is more than one, they won't work right.
152  '(browse-url-browser-function 'browse-url-firefox)
153  '(custom-safe-themes
154    '("8d146df8bd640320d5ca94d2913392bc6f763d5bc2bb47bed8e14975017eea91" "9a977ddae55e0e91c09952e96d614ae0be69727ea78ca145beea1aae01ac78d2" "0cf95236abcf59e05b1ea69b4edd53d293a5baec4fe4c3484543fee99bfd2204" "80b00f3bf7cdbdca6c80aadfbbb03145f3d0aacf6bf2a559301e61109954e30a" default))
155  '(org-export-backends '(ascii html icalendar latex md odt))
156  '(package-selected-packages
157    '(nov eat mu4e ellama emms mpdel-embark libmpdel pass password-store fontaine osm orderless embark-consult embark consult jinx dired-preview ftable flx nerd-icons-dired nerd-icons all-the-icons-dired marginalia vertico denote ox-rss org-ql org-contrib mustache org-static-blog haskell-mode julia-mode elfeed-protocol ack company magit auctex lsp-mode elpy ## org htmlize leuven-theme lua-mode ess-smart-underscore ess-R-data-view ess)))
158 (custom-set-faces
159  ;; custom-set-faces was added by Custom.
160  ;; If you edit it by hand, you could mess it up, so be careful.
161  ;; Your init file should contain only one such instance.
162  ;; If there is more than one, they won't work right.
163  )
166 ;; Send mail using SMTP via mail.vanrenterghem.io.
167 (setq send-mail-function    'smtpmail-send-it)
168 (setq smtpmail-smtp-server "mail.vanrenterghem.io"
169       smtpmail-smtp-service 587
170       smtpmail-stream-type 'starttls)
171 (setq user-full-name "Frederik Vanrenterghem"
172       smtpmail-local-domain "vanrenterghem.io"
173       user-mail-address (concat "frederik@" smtpmail-local-domain))
174 ;; Ignored in mu4e as it sets user-agent
175 (setq mail-default-headers
176       (concat "X-Mailer: GNU Emacs " (symbol-value 'emacs-version))) 
177 (setq w3m-pop-up-frames t)
179 (global-set-key [remap list-buffers] 'ibuffer)
181 ;;; use pass (~/.password-store)
182 ;;; (see The Unix password store)
183 (use-package pass
184   :ensure t
185   :config
186   (auth-source-pass-enable)
187   (setq pass-username-field "Username"))
189 ;; Elfeed news reader from Nextcloud
190 (use-package elfeed
191   :ensure t
192   :config
193   (setq elfeed-use-curl nil)
194   (elfeed-set-timeout 36000)
195   (define-key elfeed-search-mode-map (kbd "*") (lambda () (interactive) (apply 'elfeed-search-toggle-all '(star))))
196   (define-key elfeed-show-mode-map (kbd "*") (lambda () (interactive) (apply 'elfeed-show-tag '(star))))
197   (add-hook 'elfeed-show-mode 'variable-pitch-mode))
199 (use-package elfeed-protocol
200   :ensure t
201   :after elfeed
202   :config
203   (setq elfeed-protocol-feeds '(
204                                 ("owncloud+https://frederik@owncloud.vanrenterghem.biz" :use-authinfo t)
205         ))
206   (elfeed-protocol-enable))
209 ;; Read and write email using mu4e
210 (use-package mu4e
211   :ensure nil
212   ;; :ensure-system-package mu ;; Install from aur
213   :config
214   (setq mail-user-agent 'mu4e-user-agent)
215   ;; Also use mu4e when called from gnus-dired-attach
216   (setq gnus-dired-mail-mode 'mu4e-user-agent
217         mu4e-get-mail-command "mbsync io"
218         mu4e-update-interval 600
219         mu4e-use-fancy-chars t
220         mu4e-view-show-images t
221         mu4e-sent-folder   "/Sent"
222         mu4e-drafts-folder "/Drafts"
223         mu4e-trash-folder  "/Trash"
224         message-kill-buffer-on-exit t)
225   ;; attach files to mu4e messages by marking the file(s) in dired and pressing C-c RET C-a
226   (add-hook 'dired-mode-hook 'turn-on-gnus-dired-mode)
227   ;; Define all bookmarks starting with favourite query used in mailcount modeline
228   (setq mu4e-bookmarks
229         '(( :name "Last 24h's messages"
230           :key ?l
231           :favorite y
232           :query "date:24h..now AND NOT flag:trashed")
233         ( :name "Unread messages"
234           :query "flag:unread AND NOT flag:trashed"
235           :key ?u)
236         ( :name "Today's messages"
237           :query "date:today..now AND NOT flag:trashed"
238           :key ?t)
239         ( :name "Last 7 days"
240           :query "date:7d..now AND NOT flag:trashed"
241           :hide-unread t
242           :key ?w)
243         ( :name "Messages with images"
244           :query "mime:image/* AND NOT flag:trashed"
245           :key ?p)))
246   ;; Create custom spam status header and show in message view
247   (add-to-list 'mu4e-header-info-custom
248                '(:spam-status .
249                               ( :name "Spam-Status"     ;; long name, as seen in the message-view
250                                 :shortname "Spam"      ;; short name, as seen in the headers view
251                                 :help "The Spam status" ;; tooltip
252                                 ;; uses mu4e-fetch-field which is rel. slow, so only appropriate
253                                 ;; for mu4e-view-fields, and _not_ mu4e-headers-fields
254                                 :function (lambda (msg)
255                                             (or (string-join (seq-take (split-string (or (mu4e-fetch-field msg "X-Spam-Status") "") " ") 2) " ") "")))))
256   (add-to-list 'mu4e-view-fields :spam-status)
257   ;; Resize image attachments when sending email
258   (defvar mu4e-resize-image-types '("jpg" "png" "svg" "jpeg")
259     "List of attached image types to resize.")
260   (defvar mu4e-inhibit-resize nil)
261   (defun mu4e-resize-image-attachments ()
262     (unless mu4e-inhibit-resize
263       (let (cmds
264             (image-types
265              (mapconcat #'identity mu4e-resize-image-types "\\|")))
266         (save-excursion
267           (message-goto-body-1)
268           (while (re-search-forward 
269                   (format "<#part.+\\(filename=\"\\)\\(.+\\(\\.%s\\)\\)\""
270                           image-types)
271                   nil t)
272             (let* ((infile (match-string-no-properties 2))
273                    (outfile (concat (temporary-file-directory)
274                                     (file-name-nondirectory infile))))
275               (push (format "magick convert %s -resize 1200x1200\\> %s"
276                             (shell-quote-argument infile)
277                             (shell-quote-argument outfile))
278                     cmds)
279               (replace-match outfile t t nil 2)))
280           (mapcar #'shell-command cmds)))))
281   (add-hook 'message-send-hook 'mu4e-resize-image-attachments)
282   (defun mu4e-inhibit-resize()
283     (interactive)
284     (set (make-local-variable 'mu4e-inhibit-resize) t)))
286 ;; Load configuration for website
287 ;(load "mustache-html")
289 ;; Denote config
290 (use-package denote
291   :ensure t
292   :config
293   (setq denote-directory "/home/frederik/Nextcloud/notes/"))
295 (use-package nerd-icons
296   ;; :custom
297   ;; The Nerd Font you want to use in GUI
298   ;; "Symbols Nerd Font Mono" is the default and is recommended
299   ;; but you can use any other Nerd Font if you want
300   ;; (nerd-icons-font-family "Symbols Nerd Font Mono")
301   )
303 ;; Dired configuration
304 (with-eval-after-load 'dired
305   (require 'dired-x)
306   ;; Set dired-x global variables here.  For example:
307   ;; (setq dired-x-hands-off-my-keys nil)
308   )
309 (add-hook 'dired-mode-hook
310           (lambda ()
311             ;; Set dired-x buffer-local variables here.
312             (dired-omit-mode 1)
313             (dired-hide-details-mode 1)
314             (nerd-icons-dired-mode 1)
315             ))
316 (setq delete-by-moving-to-trash t)
317 (setq dired-guess-shell-alist-user
318       '(("\\.\\(png\\|jpe?g\\|tiff\\)" "feh" "xdg-open")
319         ("\\.\\(mp[34]\\|m4a\\|ogg\\|flac\\|webm\\|mkv\\)" "mpv" "xdg-open")
320                 (".*" "xdg-open")))
322 ;; Use `vertico' package to get a vertical view of the minibuffer.
323 (use-package vertico
324   :ensure t
325   :config
326   (setq vertico-resize nil)
327   (vertico-mode 1))
329 ;; Use `marginalia' package.  This will display useful
330 ;; annotations next to entries in the minibuffer.  For example, when
331 ;; using M-x it will show a brief description of the command as well
332 ;; as the keybinding associated with it (if any).
333 (use-package marginalia
334   :ensure t
335   :config
336   (marginalia-mode 1))
338 ;; Use 'winner' mode to undo and redo windows changes
339 ;; using C-c <left> and C-c <right>.
340 (use-package winner
341   :ensure t
342   :config
343   (winner-mode 1))
345 ;; Use a different spell checker, always
346 (use-package jinx
347   :ensure t
348   :config
349   (keymap-global-set "M-$" #'jinx-correct)
350   :hook (emacs-startup . global-jinx-mode))
353 ;; Bind embark
354 (use-package embark
355   :ensure t
356   :config
357   (keymap-global-set "C-." #'embark-act)
358   (keymap-global-set "C-;" #'embark-dwim))
360 (use-package consult
361   :ensure t
362   :config
363   ;; Change default bindings to consult- ones
364   :bind
365   (;; C-x bindings in `ctl-x-map'
366    ("C-x b" . consult-buffer)                ;; orig. switch-to-buffer
367    ("C-x 4 b" . consult-buffer-other-window) ;; orig. switch-to-buffer-other-window
368    ("C-x r b" . consult-bookmark)            ;; orig. bookmark-jump
369    ;; Other custom bindings
370    ("M-y" . consult-yank-pop)))              ;; orig. yank-pop
372 ;; Configure `world-clock'
373 (use-package time
374   :ensure nil
375   :config
376   (setq zoneinfo-style-world-list '(("Europe/Brussels" "Leuven")))
377   (add-to-list 'zoneinfo-style-world-list '("Australia/Perth" "Perth")))
380 ;; View PDFs in Emacs
381 (pdf-loader-install) ; On demand loading, leads to faster startup time
383 (use-package magit
384   :ensure t)
386 (use-package eat
387   :ensure t
388   :config
389    ;; For `eat-eshell-mode'.
390   (add-hook 'eshell-load-hook #'eat-eshell-mode)
391   (setq eshell-visual-commands '()))
393 ;; Read ePub files
394 (use-package nov
395   :ensure t
396   :init
397   (add-to-list 'auto-mode-alist '("\\.epub\\'" . nov-mode))
398   :config
399   (add-hook 'nov-mode-hook #'variable-pitch-mode))
401 ;; Set some preset fonts
402 (use-package fontaine
403   :ensure t
404   :config
405   (setq fontaine-presets
406       '((regular-1
407          :default-family "Iosevka Nerd Font"
408          :default-height 120
409          :variable-pitch-family "Linux Biolinum O"
410          :variable-pitch-weight normal
411          :variable-pitch-height 1.1
412          :italic-family "Iosevka Etoile"
413          :line-spacing 1)
414         (large-1
415          :default-family "Iosevka Nerd Font"
416          :default-height 150
417          :variable-pitch-family "Linux Biolinum O"
418          :variable-pitch-weight normal
419          :variable-pitch-height 1.1
420          :italic-family "Iosevka Etoile"
421          :line-spacing 1)
422         (regular-2
423          :default-family "Fira Mono Nerd Font"
424          :default-height 140
425          :variable-pitch-family "Fira Sans Book"
426          :variable-pitch-weight normal
427          :variable-pitch-height 1.0
428          :line-spacing 1)
429         (large-2
430          :default-family "Fira Mono Nerd Font"
431          :default-height 140
432          :variable-pitch-family "Fira Sans Book"
433          :variable-pitch-weight normal
434          :variable-pitch-height 1.0
435          :line-spacing 1)
436         (ereader-Baskerville
437          :variable-pitch-family "Libre Baskerville"
438          :variable-pitch-weight normal
439          :variable-pitch-height 1.0
440          :line-spacing 1)
441         (ereader-Noto-Serif
442          :variable-pitch-family "Noto Serif"
443          :variable-pitch-weight normal
444          :variable-pitch-height 1.0
445          :line-spacing 1)
446         (ereader-Bembo-Tufte
447          :variable-pitch-family "ETBembo"
448          :variable-pitch-weight normal
449          :variable-pitch-height 1.1
450          :line-spacing 1)
451         (ereader-Literata
452          :variable-pitch-family "Literata"
453          :variable-pitch-weight normal
454          :variable-pitch-height 1.0
455          :line-spacing 1))))
457 ;; Custom functions
459 ;; Might want to run this automatically
460 ;; using variable after-focus-change-function
461 (defun my/adjust-font-size-based-on-display ()
462   "Change size of fonts based on monitor."
463   (interactive)
464   (let* ((display-name (cdr (assq 'name (frame-monitor-attributes))))
465          (font-height (cond ((string-equal display-name "eDP-1") 140) 
466                             (t 120) ;; default
467                             )))
468     (set-face-attribute 'default (selected-frame) :height font-height)))