Add tags to headings

This commit is contained in:
contrapunctus 2022-01-16 13:09:58 +05:30
parent 2f19538913
commit 210aa37df8
1 changed files with 23 additions and 27 deletions

View File

@ -21,7 +21,8 @@ Some background is important to understand my keybinding choices -
(package-initialize)
#+END_SRC
* use-package
* use-package :package:
#+BEGIN_SRC emacs-lisp
(eval-when-compile
(add-to-list 'load-path "~/.emacs.d/elisp-git/use-package/")
@ -225,7 +226,7 @@ NAME is the name of the process and its buffer."
("X" . package-menu-execute)))
#+END_SRC
** feather
** feather :package:
#+BEGIN_SRC emacs-lisp
(use-package feather
:ensure t
@ -249,7 +250,7 @@ NAME is the name of the process and its buffer."
(setq gnutls-algorithm-priority "NORMAL:-VERS-TLS1.3"))
#+END_SRC
** help-mode
** help-mode :viewer:
#+BEGIN_SRC emacs-lisp
(use-package help-mode
:bind
@ -258,7 +259,7 @@ NAME is the name of the process and its buffer."
("f" . help-go-forward)))
#+END_SRC
** helpful
** helpful :viewer:
#+BEGIN_SRC emacs-lisp
(use-package helpful
:ensure t
@ -1679,7 +1680,7 @@ Things not directly pertaining to text editing.
(mapc #'find-file paths))
#+END_SRC
** time tracking - chronometrist
** time tracking - chronometrist :creator:
choice.el is required by =chronometrist-key-values=
*** goal
#+BEGIN_SRC emacs-lisp
@ -2564,7 +2565,7 @@ An example of querying the Chronometrist file data - finding out how much time I
#+END_SRC
** Internet
*** eww
*** eww :viewer:
#+BEGIN_SRC emacs-lisp
(use-package eww
:config
@ -2606,7 +2607,7 @@ Ask for confirmation before saving cookies. I'd rather just disallow them all th
(setq url-cookie-confirmation t))
#+END_SRC
*** elpher
*** elpher :viewer:
#+BEGIN_SRC emacs-lisp
(use-package elpher
:ensure t
@ -2631,7 +2632,7 @@ Ask for confirmation before saving cookies. I'd rather just disallow them all th
(add-to-list 'boon-special-mode-list 'elfeed-search-mode))
#+END_SRC
*** jabber :disabled:
*** jabber :disabled:communication:
#+BEGIN_SRC emacs-lisp
(use-package jabber
:disabled t
@ -2646,7 +2647,7 @@ Ask for confirmation before saving cookies. I'd rather just disallow them all th
(add-to-list 'jabber-post-connect-hooks 'jabber-enable-carbons))
#+END_SRC
** sxiv
** sxiv :viewer:
#+BEGIN_SRC emacs-lisp
(use-package sxiv
:load-path "~/.emacs.d/contrapunctus/sxiv/"
@ -2659,7 +2660,7 @@ Ask for confirmation before saving cookies. I'd rather just disallow them all th
#+END_SRC
** TODO emacsshot
** TODO emacsshot :creator:
PR ideas
1. [ ] create directories in save path if they don't exist
2. [ ] grammar - "written /path/to/file"
@ -2675,7 +2676,7 @@ PR ideas
emacsshot-snap-window-filename "/media/data/anon/Pictures/screenshots/emacsshot/emacsshot.png"))
#+END_SRC
** File management
** File management :file:
#+BEGIN_SRC emacs-lisp
(use-package dired
:init (add-hook 'dired-mode-hook 'turn-on-launch-mode)
@ -2854,7 +2855,7 @@ PR ideas
(error "File %S does not exist!" file))))
#+END_SRC
** peep-dired :disabled:
** peep-dired :disabled:file:ui:
:PROPERTIES:
:CREATED: 2022-01-14T18:57:56+0530
:END:
@ -2891,7 +2892,7 @@ PR ideas
delete-old-versions t)
#+END_SRC
** async-backup (backup on save)
** async-backup (backup on save) :file:
:PROPERTIES:
:CREATED: 2022-01-14T16:38:38+0530
:CUSTOM_ID: async-backup
@ -2903,7 +2904,7 @@ PR ideas
"/media/data/anon/backups/emacs-async-backup/"))
#+END_SRC
** mail
** mail :communication:
*** wanderlust :disabled:
:PROPERTIES:
@ -2962,13 +2963,13 @@ PR ideas
(message-mode . visual-fill-column-mode))
#+END_SRC
** doc-view
** doc-view :viewer:
#+BEGIN_SRC emacs-lisp
(use-package doc-view
:config (setq doc-view-resolution 300))
#+END_SRC
** pdf-tools
** pdf-tools :viewer:
#+BEGIN_SRC emacs-lisp
(use-package pdf-tools
:ensure t
@ -2994,7 +2995,7 @@ PR ideas
("r" . nil)))
#+END_SRC
** nov.el
** nov.el :viewer:
#+BEGIN_SRC emacs-lisp
(use-package nov
:ensure t
@ -3029,13 +3030,13 @@ PR ideas
(delete "ix.io" (mapcar #'car webpaste-providers-alist))))
#+END_SRC
** eshell
** eshell :shell:
#+BEGIN_SRC emacs-lisp
(use-package eshell
:config (setq eshell-history-size 999))
#+END_SRC
** comint
** comint :shell:
#+BEGIN_SRC emacs-lisp
(use-package comint
:bind (:map comint-mode-map
@ -3046,7 +3047,7 @@ PR ideas
("C-c C-h" . comint-previous-prompt)))
#+END_SRC
** info
** info :viewer:
#+BEGIN_SRC emacs-lisp
(use-package info
:config
@ -3062,7 +3063,7 @@ PR ideas
("f" . Info-history-forward)))
#+END_SRC
** image-mode
** image-mode :viewer:
#+BEGIN_SRC emacs-lisp
(use-package image-mode
:bind
@ -3636,7 +3637,7 @@ jumping to match from M-x grep , too)
(switch-to-buffer (first buffers))))
#+END_SRC
** ibuffer
** ibuffer :buffer:
#+BEGIN_SRC emacs-lisp
(use-package ibuffer
:bind
@ -3644,7 +3645,6 @@ jumping to match from M-x grep , too)
("X" . 'ibuffer-do-kill-on-deletion-marks))) ;; Boon hijacks the x key.
#+END_SRC
**
#+BEGIN_SRC emacs-lisp
(general-define-key
"C-x k" 'cp-kill-buffer
@ -3656,7 +3656,6 @@ jumping to match from M-x grep , too)
"M-<f5>" 'ielm)
#+END_SRC
**
#+BEGIN_SRC emacs-lisp
(general-define-key
:prefix "<f1>"
@ -3665,7 +3664,6 @@ jumping to match from M-x grep , too)
"l" 'find-library)
#+END_SRC
**
#+BEGIN_SRC emacs-lisp
(general-define-key
:prefix "<f2>"
@ -3679,7 +3677,6 @@ jumping to match from M-x grep , too)
"h" 'proced)
#+END_SRC
**
#+BEGIN_SRC emacs-lisp
(general-define-key
:prefix "<f5>"
@ -3695,7 +3692,6 @@ jumping to match from M-x grep , too)
"p" 'list-packages)
#+END_SRC
**
#+BEGIN_SRC emacs-lisp
(general-define-key
;; [down-mouse-1] 'mouse-set-point