This repository has been archived on 2024-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
dianciemacs/lisp/org-mode.el

85 lines
3 KiB
EmacsLisp
Raw Permalink Normal View History

;;; lisp/org-mode.el --- org-mode improvements for Emacs -*- lexical-binding: t; -*-
;;; Commentary:
;;
;; A lot of people out there will agree wholeheartedly that org mode is great.
;; Tons of fine-grained control, simplicity, and extensibilty - all built-in by
;; default into a single tool that works beautifully with Emacs.
;;
;;; Code:
;; org-mode ;; org-modern
;; Option 2: Globally
(use-package org-modern
:after org)
(with-eval-after-load 'org (global-org-modern-mode))
2023-06-26 18:12:37 +01:00
;; Prevent the usage of automatic <> delimiters in org mode (conflict with snippets)
(add-hook 'org-mode-hook (lambda ()
(setq-local electric-pair-inhibit-predicate
`(lambda (c)
(if (char-equal c ?<) t (,electric-pair-inhibit-predicate c))))))
(with-eval-after-load 'org
2022-11-20 08:03:40 +00:00
;; Faces for the font sizes of org-mode headings
2023-06-26 18:12:37 +01:00
(set-face-attribute 'org-level-8 nil :weight 'bold)
(set-face-attribute 'org-level-7 nil :weight 'bold)
(set-face-attribute 'org-level-6 nil :weight 'bold)
(set-face-attribute 'org-level-5 nil :weight 'bold)
(set-face-attribute 'org-level-4 nil :weight 'bold)
2023-06-28 14:56:33 +01:00
(set-face-attribute 'org-level-3 nil :weight 'bold :height 1.05)
(set-face-attribute 'org-level-2 nil :weight 'bold :height 1.1)
(set-face-attribute 'org-level-1 nil :weight 'bold :height 1.2)
2022-11-20 08:03:40 +00:00
(set-face-attribute 'org-document-title nil
2023-06-26 18:12:37 +01:00
:height 1.65
2022-11-08 17:53:06 +00:00
:foreground 'unspecified
2023-06-26 18:12:37 +01:00
:weight 'bold))
2022-11-08 17:53:06 +00:00
2022-11-20 08:03:40 +00:00
(with-eval-after-load 'org
2022-11-20 18:10:03 +00:00
;; Customize org-mode's default functionality
(setq org-ellipsis "..."
org-use-property-inheritance t
org-list-allow-alphabetical t
org-catch-invisible-edits 'smart
org-startup-indented t
org-hide-emphasis-markers t
org-startup-with-inline-images t
org-image-actual-width '(300)
org-pretty-entities t
2024-01-15 21:03:24 +00:00
org-adapt-indentation t))
2023-06-26 18:12:37 +01:00
;; org-roam - A plain-text personal knowledge management system
(use-package org-roam
:init
2022-11-20 08:03:40 +00:00
(org-roam-db-autosync-mode 1)
(setq org-roam-capture-templates
'(("d" "default" plain
"\n%?"
2024-01-15 21:03:24 +00:00
:if-new (file+head "${slug}.org" "#+title: ${title}\n#+date: %U\n")
2022-11-20 08:03:40 +00:00
:unnarrowed t)))) ; Automatically sync nodes
;; Keybinds for org-mode
;; evil-org - Some nice keybinds for org-mode and org-agenda
(use-package evil-org
:after org
:config
(add-hook 'org-mode-hook 'evil-org-mode)
(add-hook 'org-agenda-mode-hook 'evil-org-mode)
(require 'evil-org-agenda)
(evil-org-agenda-set-keys))
2022-11-20 08:03:40 +00:00
(with-eval-after-load 'general
(general-create-definer diancite/org :prefix leader-key)
(diancite/org
:keymaps 'normal
2022-12-20 21:10:08 +00:00
"n f" '(org-roam-node-find :wk "Find Nodes")
2022-11-20 08:03:40 +00:00
"n s" '(org-roam-db-sync :wk "Sync Nodes")
"n c" '(org-todo :wk "Cycle Todo")
"n l" '(org-latex-preview :wk "Preview Latex")
"n a" '(org-agenda :wk "Agenda")
2022-12-20 21:10:08 +00:00
"n i" '(org-insert-link :wk "Insert Link")
"n t" '(:wk "Tables")
"n t a" '(org-table-align :wk "Align Table")
2022-12-21 11:26:36 +00:00
"n t c" '(org-table-create :wk "Create Table")))
;;; org-mode.el ends here