Skip to content

Instantly share code, notes, and snippets.

@cryptstopher
cryptstopher / org-agenda-keys.el
Created August 8, 2020 11:32
The essential org mode keys.
(global-set-key (kbd "C-c l") 'org-store-link)
(global-set-key (kbd "C-c a") 'org-agenda)
(global-set-key (kbd "C-c c") 'org-capture)
@cryptstopher
cryptstopher / comfort.el
Created December 13, 2019 01:30
Some emacs style and comfort settings.
;; Removed the menu bar and toolbar (if you want that)
(menu-bar-mode -1)
(tool-bar-mode -1)
;; Enabled visual line mode (text wrapping)
(add-hook 'text-mode-hook 'visual-line-mode)
;; Made Emacs fill your display:
@cryptstopher
cryptstopher / journal.txt
Created August 9, 2018 04:20
basic org capture journal template
* %U %^{Title}
%?
;; org mode latex standard manuscript formats
;; For your org file heading
;; #+LaTeX_CLASS: novel (or, short, whichever)
;; #+LATEX_HEADER: \runningtitle{Shortened Title}
;; #+LATEX_HEADER: \wordcount{?}
(require 'ox-latex)
(unless (boundp 'org-latex-classes)
(setq org-latex-classes nil))