299 lines
10 KiB
EmacsLisp
299 lines
10 KiB
EmacsLisp
;;; $DOOMDIR/config.el -*- lexical-binding: t; -*-
|
|
|
|
;; Some functionality uses this to identify you, e.g. GPG configuration, email
|
|
;; clients, file templates and snippets.
|
|
(setq user-full-name "Janek"
|
|
user-mail-address "27jf@pm.me")
|
|
|
|
;;;; VISUALS
|
|
|
|
;; Doom exposes five (optional) variables for controlling fonts in Doom. Here
|
|
;; are the three important ones:
|
|
;;
|
|
;; + `doom-font'
|
|
;; + `doom-variable-pitch-font'
|
|
;; + `doom-big-font' -- used for `doom-big-font-mode'; use this for
|
|
;; presentations or streaming.
|
|
;;
|
|
;; They all accept either a font-spec, font string ("Input Mono-12"), or xlfd
|
|
;; font string. You generally only need these two:
|
|
;; (setq doom-font (font-spec :family "monospace" :size 12 :weight 'semi-light)
|
|
;; doom-variable-pitch-font (font-spec :family "sans" :size 13))
|
|
|
|
;; There are two ways to load a theme. Both assume the theme is installed and
|
|
;; available. You can either set `doom-theme' or manually load a theme with the
|
|
;; `load-theme' function. This is the default:
|
|
(setq doom-theme 'doom-one
|
|
doom-font (font-spec :family "monospace" :size 24 :weight 'semi-light)
|
|
doom-variable-pitch-font (font-spec :family "sans" :size 24))
|
|
|
|
(setq display-line-numbers-type 'relative)
|
|
|
|
;;;; BINDINGS
|
|
|
|
(defun dragon ()
|
|
; Share file in current buffer via dragon
|
|
(interactive)
|
|
(shell-command (concat "dragon-drag-and-drop -x " (buffer-file-name)))
|
|
)
|
|
|
|
;; rebing C-u - https://emacs.stackexchange.com/a/58320
|
|
(global-set-key (kbd "C-#") 'universal-argument)
|
|
(define-key universal-argument-map (kbd "C-#") 'universal-argument-more)
|
|
(global-set-key (kbd "C-*") 'universal-argument)
|
|
(define-key universal-argument-map (kbd "C-*") 'universal-argument-more)
|
|
|
|
(map! :leader "u" 'evil-prev-buffer
|
|
:leader "i" 'evil-next-buffer
|
|
:leader "bq" 'doom/save-and-kill-buffer
|
|
:leader "aa" 'annotate-annotate
|
|
:leader "as" 'annotate-mode
|
|
:leader "d" 'dragon
|
|
;; Buffer-local font resizing
|
|
:n "M-C-=" 'text-scale-increase
|
|
:n "M-C--" 'text-scale-decrease
|
|
;; Frame-local font resizing
|
|
:n "C-=" 'doom/increase-font-size
|
|
:n "C--" 'doom/decrease-font-size
|
|
)
|
|
|
|
;;;; GLOBAL SETUP
|
|
|
|
;; Undo
|
|
(setq evil-want-fine-undo t)
|
|
(setq amalgamating-undo-limit 5)
|
|
|
|
(setq confirm-kill-emacs nil)
|
|
|
|
(setq initial-major-mode 'org-mode)
|
|
|
|
(whitespace-mode 0)
|
|
|
|
(setq eww-search-prefix "https://safe.duckduckgo.com/html/?q=")
|
|
|
|
(setq lazy-highlight-cleanup nil)
|
|
|
|
;; Backups & auto-saves
|
|
(setq auto-save-default t
|
|
auto-save-interval 40)
|
|
|
|
(setq make-backup-files t
|
|
backup-directory-alist (list (cons "." (concat doom-cache-dir "backup/")))
|
|
delete-old-versions t
|
|
version-control t
|
|
vc-make-backup-files t
|
|
kept-new-versions 5
|
|
kept-old-versions 3
|
|
)
|
|
|
|
;; Data dirs
|
|
|
|
(defvar user-data-dir "~/data" "Location of the main user data")
|
|
|
|
(load! "./local.el" nil t)
|
|
|
|
(setq org-directory (expand-file-name "2-standards/notes" user-data-dir))
|
|
(setq default-directory org-directory)
|
|
(setq initial-buffer-choice (expand-file-name "journal/log.org" org-directory))
|
|
(setq org-roam-directory (concat (file-name-as-directory (getenv "XDG_DATA_HOME")) "org-roam"))
|
|
|
|
;;; UTF-8 encoding - https://zhangda.wordpress.com/2016/02/15/configurations-for-beautifying-emacs-org-mode/
|
|
;; disable CJK coding/encoding (Chinese/Japanese/Korean characters)
|
|
(setq utf-translate-cjk-mode nil)
|
|
|
|
(set-language-environment 'utf-8)
|
|
(setq locale-coding-system 'utf-8)
|
|
|
|
;; set the default encoding system
|
|
(prefer-coding-system 'utf-8)
|
|
(setq default-file-name-coding-system 'utf-8)
|
|
(set-default-coding-systems 'utf-8)
|
|
(set-terminal-coding-system 'utf-8)
|
|
(set-keyboard-coding-system 'utf-8)
|
|
;; backwards compatibility as default-buffer-file-coding-system
|
|
;; is deprecated in 23.2.
|
|
(if (boundp buffer-file-coding-system)
|
|
(setq buffer-file-coding-system 'utf-8)
|
|
(setq default-buffer-file-coding-system 'utf-8))
|
|
|
|
;; Treat clipboard input as UTF-8 string first; compound text next, etc.
|
|
(setq x-select-request-type '(UTF8_STRING COMPOUND_TEXT TEXT STRING))
|
|
|
|
|
|
;;;; ORG
|
|
(after! org
|
|
(setq org-agenda-files
|
|
(apply 'append
|
|
(mapcar
|
|
(lambda (directory) (directory-files-recursively (expand-file-name directory user-data-dir) org-agenda-file-regexp))
|
|
'("1-projects" "2-standards" "3-resources")
|
|
)))
|
|
|
|
(defun org-todo-or-insert (&optional arg)
|
|
(interactive "P")
|
|
(if (org-at-heading-p) (org-todo arg) (org-insert-todo-heading arg t)))
|
|
|
|
(defun org-timestamp-up-week ()
|
|
(interactive)
|
|
(let ((setq current-prefix-arg '(7))) (call-interactively 'org-timestamp-up-day))
|
|
)
|
|
|
|
(map! :map org-mode-map
|
|
:localleader
|
|
"j" 'org-insert-heading
|
|
"t" 'org-todo-or-insert
|
|
"d=" 'org-timestamp-up-week)
|
|
|
|
(define-key org-mode-map (kbd "C-c .") 'org-time-stamp-inactive)
|
|
(define-key org-mode-map (kbd "M-C-+") 'org-timestamp-up)
|
|
(define-key org-mode-map (kbd "M-C--") 'org-timestamp-down)
|
|
|
|
;; Toggle source blocks with C-c t
|
|
(defvar org-blocks-hidden nil)
|
|
(defun org-toggle-blocks ()
|
|
"Toggle all source code blocks."
|
|
(interactive)
|
|
(if org-blocks-hidden
|
|
(org-show-block-all)
|
|
(org-hide-block-all))
|
|
(setq-local org-blocks-hidden (not org-blocks-hidden)))
|
|
(define-key org-mode-map (kbd "C-c t") 'org-toggle-blocks)
|
|
|
|
;; https://christiantietze.de/posts/2019/06/org-fold-heading/
|
|
(defun ct/org-foldup ()
|
|
"Hide the entire subtree from root headline at point."
|
|
(interactive)
|
|
(while (ignore-errors (outline-up-heading 1)))
|
|
(org-flag-subtree t))
|
|
|
|
(defun ct/org-shifttab (&optional arg)
|
|
(interactive "P")
|
|
(if (or (null (org-current-level)) ; point is before 1st heading, or
|
|
(and (= 1 (org-current-level)) ; at level-1 heading, or
|
|
(org-at-heading-p))
|
|
(org-at-table-p)) ; in a table (to preserve cell movement)
|
|
; perform org-shifttab at root level elements and inside tables
|
|
(org-shifttab arg)
|
|
; try to fold up elsewhere
|
|
(ct/org-foldup)))
|
|
(define-key org-mode-map (kbd "S-<tab>") 'ct/org-shifttab)
|
|
|
|
;; https://emacs.stackexchange.com/questions/38529/make-multiple-lines-todos-at-once-in-org-mode
|
|
(defun org-todo-region ()
|
|
(interactive)
|
|
(let ((scope (if mark-active 'region 'tree))
|
|
(state (org-fast-todo-selection))
|
|
(org-enforce-todo-dependencies nil))
|
|
(org-map-entries (lambda () (org-todo state)) nil scope)))
|
|
)
|
|
|
|
;; Behavior
|
|
(set-file-template! 'org-mode :ignore t)
|
|
(setq org-read-date-prefer-future nil)
|
|
|
|
;; Visuals
|
|
(setq org-image-actual-width nil)
|
|
(setq org-ellipsis "↴")
|
|
|
|
;; Exporting - https://orgmode.org/manual/Export-Settings.html
|
|
(setq org-latex-pdf-process '("latexmk -outdir=/tmp/latexmk -f -pdf %F; mv %f /tmp/latexmk; mv /tmp/latexmk/%b.pdf %o")) ; https://emacs.stackexchange.com/a/48351
|
|
(setq org-latex-packages-alist '(("margin=2cm" "geometry") ("avoid-all" "widows-and-orphans")))
|
|
(setq org-export-with-tags nil)
|
|
(setq org-export-with-tasks 'done)
|
|
(setq org-export-with-todo-keywords nil)
|
|
|
|
;; Org startup - https://orgmode.org/manual/In_002dbuffer-Settings.html
|
|
(setq org-startup-folded 'show2levels)
|
|
(setq org-startup-with-inline-images t)
|
|
(setq org-display-remote-inline-images 'cache)
|
|
|
|
;; Fix xdg-open & pdfs - https://depp.brause.cc/dotemacs/#orgd97f08c
|
|
(setq org-file-apps '((remote . emacs)
|
|
("\\.pdf\\'" . default)
|
|
(auto-mode . emacs)
|
|
(directory . emacs)
|
|
(system . "setsid -w xdg-open %s")
|
|
(t . system)))
|
|
;; https://discord.com/channels/406534637242810369/406554085794381833/814175445004189706
|
|
;(after! org
|
|
; (add-to-list 'org-file-apps '(system . "setsid -w xdg-open %s"))
|
|
|
|
;; Automated logging for todos - https://stackoverflow.com/questions/12262220/add-created-date-property-to-todos-in-org-mode/52815573#52815573
|
|
(setq org-log-done 'time)
|
|
(setq org-log-into-drawer t)
|
|
(setq org-treat-insert-todo-heading-as-state-change t)
|
|
|
|
;;;; PACKAGES
|
|
|
|
;; https://emacs.stackexchange.com/questions/16744/magit-help-popup-enabled-by-default
|
|
(defadvice magit-status (after my-magit-status-dispatch-popup)
|
|
(call-interactively 'magit-dispatch))
|
|
(ad-activate 'magit-status)
|
|
|
|
(use-package! evil-replace-with-register ; gr
|
|
:init
|
|
(setq evil-replace-with-register-key (kbd "gr"))
|
|
(evil-replace-with-register-install)
|
|
:config
|
|
(map! :nv "gR" #'+eval/line-or-region)
|
|
)
|
|
(use-package! evil-args ; https://github.com/wcsmith/evil-args
|
|
:config
|
|
;; bind evil-args text objects
|
|
(define-key evil-inner-text-objects-map "a" 'evil-inner-arg)
|
|
(define-key evil-outer-text-objects-map "a" 'evil-outer-arg)
|
|
|
|
;; bind evil-forward/backward-args
|
|
(define-key evil-normal-state-map "L" 'evil-forward-arg)
|
|
(define-key evil-normal-state-map "H" 'evil-backward-arg)
|
|
(define-key evil-motion-state-map "L" 'evil-forward-arg)
|
|
(define-key evil-motion-state-map "H" 'evil-backward-arg)
|
|
|
|
;; bind evil-jump-out-args
|
|
(define-key evil-normal-state-map "K" 'evil-jump-out-args)
|
|
)
|
|
|
|
(use-package! direnv ; nix-shell stuffs
|
|
:config
|
|
(setq direnv-always-show-summary nil)
|
|
(direnv-mode)
|
|
)
|
|
(use-package! plantuml-mode ; Diagrams
|
|
:config
|
|
(setq plantuml-executable-path "nostderr"
|
|
plantuml-executable-args '("plantuml" "-headless")
|
|
plantuml-default-exec-mode 'executable
|
|
plantuml-jar-path "/usr/share/java/plantuml/plantuml.jar"
|
|
org-plantuml-jar-path plantuml-jar-path
|
|
plantuml-java-args '("-Djava.awt.headless=true" "-jar")
|
|
)
|
|
(after! org
|
|
(add-to-list 'org-src-lang-modes '("plantuml" . plantuml))
|
|
(org-babel-do-load-languages
|
|
'org-babel-load-languages
|
|
'(other Babel languages (plantuml . t))
|
|
)
|
|
)
|
|
)
|
|
(use-package! adoc-mode ; Asciidoc, a md alternative
|
|
:config
|
|
(add-to-list 'auto-mode-alist (cons "\\.adoc\\'" 'adoc-mode))
|
|
)
|
|
|
|
;; Here are some additional functions/macros that could help you configure Doom:
|
|
;;
|
|
;; - `load!' for loading external *.el files relative to this one
|
|
;; - `use-package!' for configuring packages
|
|
;; - `after!' for running code after a package has loaded
|
|
;; - `add-load-path!' for adding directories to the `load-path', relative to
|
|
;; this file. Emacs searches the `load-path' when you load packages with
|
|
;; `require' or `use-package'.
|
|
;; - `map!' for binding new keys
|
|
;;
|
|
;; To get information about any of these functions/macros, move the cursor over
|
|
;; the highlighted symbol at press 'K' (non-evil users must press 'C-c c k').
|
|
;; This will open documentation for it, including demos of how they are used.
|
|
;;
|
|
;; You can also try 'gd' (or 'C-c c d') to jump to their definition and see how
|
|
;; they are implemented.
|