dotfiles/.config/doom/config.el

155 lines
5.3 KiB
EmacsLisp
Raw Normal View History

2020-10-07 19:41:29 +00:00
;;; $DOOMDIR/config.el -*- lexical-binding: t; -*-
;; Place your private configuration here! Remember, you do not need to run 'doom
;; sync' after modifying this file!
;; Some functionality uses this to identify you, e.g. GPG configuration, email
;; clients, file templates and snippets.
(setq user-full-name "xerus"
user-mail-address "27jf@pm.me")
;; 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)
(setq doom-font (font-spec :family "Fira Code" :size 24 :weight 'semi-light)
doom-variable-pitch-font (font-spec :family "sans" :size 25))
(setq display-line-numbers-type 'relative)
2020-10-07 19:41:29 +00:00
(map! :leader "u" 'evil-prev-buffer
:leader "i" 'evil-next-buffer
:leader "bq" 'doom/save-and-kill-buffer
:leader "mj" 'org-insert-heading
:leader "aa" 'annotate-annotate
:leader "as" 'annotate-mode
)
2020-10-07 19:41:29 +00:00
;; Undo
(setq evil-want-fine-undo t)
(setq amalgamating-undo-limit 5)
(global-undo-tree-mode t)
(setq undo-tree-auto-save-history t
undo-tree-history-directory-alist `(("." . ,(expand-file-name "backups/undo/" user-emacs-directory))))
; (advice-add 'undo-auto--last-boundary-amalgamating-number :override #'ignore)
;; Global config
(setq confirm-kill-emacs nil)
(setq initial-major-mode 'org-mode)
2020-10-15 08:12:25 +00:00
(desktop-save-mode t)
2020-10-07 19:41:29 +00:00
(whitespace-mode -1)
2020-10-07 19:41:29 +00:00
;; Backups & auto-saves
(setq auto-save-default t
auto-save-interval 40)
2020-10-07 19:41:29 +00:00
(setq backup-directory-alist `(("." . ,(expand-file-name "backups/" user-emacs-directory))))
(setq delete-old-versions t
kept-new-versions 6
kept-old-versions 2
version-control t
vc-make-backup-files t)
2020-10-07 19:41:29 +00:00
;; Data dirs
2020-10-07 19:41:29 +00:00
(defvar user-data-dir "~/data" "Location of the main user data")
2020-10-07 19:41:29 +00:00
(load! "./local.el" nil t)
2020-10-07 19:41:29 +00:00
; ORG
;; Fix xdg-open - https://askubuntu.com/questions/646631/emacs-doesnot-work-with-xdg-open
(setq process-connection-type nil)
(let ((default-directory user-data-dir))
(setq org-directory (expand-file-name "1-projects"))
2020-10-23 11:57:26 +00:00
(require 'org)
(setq org-agenda-files (apply 'append
2020-10-07 19:41:29 +00:00
(mapcar
(lambda (directory)
(directory-files-recursively
directory org-agenda-file-regexp))
2020-10-19 14:09:42 +00:00
'("1-projects" "2-standards" "3-resources"))))
)
2020-10-19 14:09:42 +00:00
(setq org-roam-directory (concat (file-name-as-directory (getenv "XDG_DATA_HOME")) "org-roam"))
2020-10-07 19:41:29 +00:00
(set-file-template! 'org-mode :ignore t)
2020-10-07 19:41:29 +00:00
(setq default-directory org-directory)
(setq org-read-date-prefer-future nil)
(setq org-image-actual-width 100)
2020-10-07 19:41:29 +00:00
;; org 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)
(define-key org-mode-map (kbd "C-c .") 'org-time-stamp-inactive)
2020-10-07 19:41:29 +00:00
(add-hook 'org-mode-hook 'org-toggle-blocks)
(add-hook 'org-mode-hook 'org-toggle-inline-images)
(add-hook 'org-mode-hook (apply-partially '+org/close-all-folds 2))
(add-hook 'org-mode-hook (apply-partially 'whitespace-mode -1))
2020-10-07 19:41:29 +00:00
;; 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)
2020-10-07 19:41:29 +00:00
;; 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.
(load! "./togetherly.el")