From f4f88ea6ac2affdac4246b9e6a6a4ec3fdeb92f5 Mon Sep 17 00:00:00 2001 From: Ashton Wiersdorf Date: Fri, 8 Sep 2023 09:39:55 -0600 Subject: Rename mixin → extra MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 48 ++++++++------ extras/base.el | 134 +++++++++++++++++++++++++++++++++++++++ extras/dev.el | 100 +++++++++++++++++++++++++++++ extras/email.el | 30 +++++++++ extras/org-intro.txt | 91 ++++++++++++++++++++++++++ extras/org.el | 176 +++++++++++++++++++++++++++++++++++++++++++++++++++ extras/researcher.el | 96 ++++++++++++++++++++++++++++ extras/vim-like.el | 32 ++++++++++ init.el | 27 ++++---- mixins/base.el | 134 --------------------------------------- mixins/dev.el | 100 ----------------------------- mixins/email.el | 30 --------- mixins/org-intro.txt | 91 -------------------------- mixins/org.el | 176 --------------------------------------------------- mixins/researcher.el | 96 ---------------------------- mixins/vim-like.el | 32 ---------- 16 files changed, 703 insertions(+), 690 deletions(-) create mode 100644 extras/base.el create mode 100644 extras/dev.el create mode 100644 extras/email.el create mode 100644 extras/org-intro.txt create mode 100644 extras/org.el create mode 100644 extras/researcher.el create mode 100644 extras/vim-like.el delete mode 100644 mixins/base.el delete mode 100644 mixins/dev.el delete mode 100644 mixins/email.el delete mode 100644 mixins/org-intro.txt delete mode 100644 mixins/org.el delete mode 100644 mixins/researcher.el delete mode 100644 mixins/vim-like.el diff --git a/README.md b/README.md index 6c36cd4..b1a2cc1 100644 --- a/README.md +++ b/README.md @@ -53,13 +53,17 @@ Emacs 29.1 added the handy `--init-directory` flag. This means that you can run Once you're happy, you should just copy `init.el` and `early-init.el` to `~/.emacs.d/`. -## Mixins +## Screenshots -For those who'd like a little more help in tailoring Emacs for specific purposes, the `mixins/` folder contains a few files that can be included via `(load-file "mixin/mixin-name.el")` from the `init.el` file, or copied wholesale or in part into `init.el` directly. -**NOTE:** If you copy the `mixin/` directory to `~/.emacs.d/` or wherever you're setting `user-emacs-directory`, then simply incrementing the appropriate lines in the `init.el` file should work. -Mixins: +## Extras + +For those who'd like a little more help in tailoring Emacs for specific purposes, the `extras/` folder contains a few Emacs Lisp files with example configurations for various packages. You can copy just the config you want into `init.el` or include them wholesale via `(load-file "~/.emacs.d/extras/file-name.el")`. + +**NOTE:** If you copy the `extras/` directory to `~/.emacs.d/` or wherever you're setting `user-emacs-directory`, then simply incrementing the appropriate lines in the `init.el` file should work. + +Extras: - Base UI Enhancements - Development tools @@ -68,9 +72,9 @@ Mixins: - Email (TODO: mu4e, EBDB) - Researcher (TODO: denote) -#### `mixins/base.el` +#### `extras/base.el` -Packages this mixin adds: +Packages this extra adds: - [Avy](https://github.com/abo-abo/avy) - [Embark](https://github.com/oantolin/embark) @@ -86,29 +90,29 @@ These are some of the best UI enhancements that Emacs has to offer. Vertico and Avy is the fastest way to move around in a buffer, and it can do a *lot*.[^1] Embark is kind of like a right-click context menu, but entirely keyboard driven. -#### `mixins/dev.el` +#### `extras/dev.el` -Packages this mixin adds: +Packages this extra adds: - [magit](https://magit.vc) - Markdown, YAML, and JSON modes Magit is the best Git interface in the known universe. Some people use Emacs just so they can use Magit. It's that good. Entry point is bound to `C-c g` by default. -Built-in packages that this mixin configures: +Built-in packages that this extra configures: - [Eglot](https://github.com/joaotavora/eglot) ([Language Server Protocol (LSP) client](https://microsoft.github.io/language-server-protocol/)) - Treesit ([Tree-Sitter](https://github.com/tree-sitter) support) Both of these packages are new in Emacs 29. Be sure to run `M-x treesit-install-language-grammar` to install the language grammar you'll need before editing a file the respective language for the first time. -#### `mixins/vim-like.el` +#### `extras/vim-like.el` -Packages this mixin adds: +Packages this extra adds: - [Evil](https://github.com/emacs-evil/evil) -If you like Vim keybindings, then this is the mixin for you. It configures `evil-mode` and enables it, so you get Vim-like keybindings all throughout Emacs. I understand that this is the best Vim emulation outside of Vim itself. I use `evil-mode` in all my work. +If you like Vim keybindings, then this is the extra for you. It configures `evil-mode` and enables it, so you get Vim-like keybindings all throughout Emacs. I understand that this is the best Vim emulation outside of Vim itself. I use `evil-mode` in all my work. Other packages that I use personally, but are not on GNU or non-GNU ELPA and so left out of the config include: @@ -116,24 +120,24 @@ Other packages that I use personally, but are not on GNU or non-GNU ELPA and so - [Evil-Leader](https://github.com/cofi/evil-leader) Setting a prefix (i.e. "leader") key - [Origami](https://github.com/gregsexton/origami.el) Code folding -#### `mixins/org.el` +#### `extras/org.el` -This mixin configures `org-mode`. There is a *lot* that Bedrock cannot configure out of the box—you will need to modify all variables to fit your file system and needs, as explained in comments in the file. +This extra configures `org-mode`. There is a *lot* that Bedrock cannot configure out of the box—you will need to modify all variables to fit your file system and needs, as explained in comments in the file. -#### `mixins/email.el` +#### `extras/email.el` TODO ## Using -Clone this repository wherever. Then you should copy `early-init.el`, `init.el`, and (optionally, recommended) `mixins/` into your `~/.emacs.d/` repository: +Clone this repository wherever. Then you should copy `early-init.el`, `init.el`, and (optionally, recommended) `extras/` into your `~/.emacs.d/` repository: ```bash git clone https://git.sr.ht/~ashton314/emacs-bedrock mkdir -p ~/.emacs.d/ cp emacs-bedrock/early-init.el ~/.emacs.d/ cp emacs-bedrock/init.el ~/.emacs.d/ -cp -r emacs-bedrock/mixins ~/.emacs.d/ +cp -r emacs-bedrock/extras ~/.emacs.d/ ``` Fire up Emacs and you're good to go! @@ -163,7 +167,9 @@ Emacs 29.1 is, as of 2023-09-04, the latest stable release. The specific feature ## Development -This is version `1.0.0`. No new `use-package` declarations will be added to `init.el`. No promises on the mixins. :) +This is version `1.1.0`. + +As of `1.0.0`, no new `use-package` declarations will be added to `init.el`. No promises on the extras. :) This is a hobby project. Please be patient with development. @@ -175,6 +181,12 @@ See the [issue tracker](https://todo.sr.ht/~ashton314/emacs-bedrock) on SourceHu ## Changelog + - 1.1.0 + + 2023-09-08 + + Rename "mixins" → "extras", as mixin has the flavor of being some kind of special thingy. "Extra" gets at the purpose of these files. + - 1.0.0 2023-09-04 diff --git a/extras/base.el b/extras/base.el new file mode 100644 index 0000000..26ffc9a --- /dev/null +++ b/extras/base.el @@ -0,0 +1,134 @@ +;;; Emacs Bedrock +;;; +;;; Extra config: Base UI enhancements + +;;; Usage: Append or require this file from init.el to enable various UI/UX +;;; enhancements. + +;;; Contents: +;;; +;;; - Motion aids +;;; - Power-ups: Embark and Consult +;;; - Minibuffer and completion + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;; +;;; Motion aids +;;; +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +(use-package avy + :ensure t + :demand t + :bind (("C-c j" . avy-goto-line) + ("s-j" . avy-goto-char-timer))) + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;; +;;; Power-ups: Embark and Consult +;;; +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +;; Consult: Misc. enhanced commands +(use-package consult + :ensure t + ;; Other good things to bind: consult-ripgrep, consult-line-multi, + ;; consult-history, consult-outline + :bind (("C-x b" . consult-buffer) ; orig. switch-to-buffer + ("M-y" . consult-yank-pop) ; orig. yank-pop + ("C-s" . consult-line)) ; orig. isearch + :config + ;; Narrowing lets you restrict results to certain groups of candidates + (setq consult-narrow-key "<")) + +(use-package embark + :ensure t + :demand t + :after avy + :bind (("C-c a" . embark-act)) ; bind this to an easy key to hit + :init + ;; Add the option to run embark when using avy + (defun bedrock/avy-action-embark (pt) + (unwind-protect + (save-excursion + (goto-char pt) + (embark-act)) + (select-window + (cdr (ring-ref avy-ring 0)))) + t) + + ;; After invoking avy-goto-char-timer, hit "." to run embark at the next + ;; candidate you select + (setf (alist-get ?. avy-dispatch-alist) 'bedrock/avy-action-embark)) + +(use-package embark-consult + :ensure t) + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;; +;;; Minibuffer and completion +;;; +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +;; Vertico: better vertical completion for minibuffer commands +(use-package vertico + :ensure t + :init + ;; You'll want to make sure that e.g. fido-mode isn't enabled + (vertico-mode)) + +(use-package vertico-directory + :after vertico + :bind (:map vertico-map + ("M-DEL" . vertico-directory-delete-word))) + +;; Marginalia: annotations for minibuffer +(use-package marginalia + :ensure t + :config + (marginalia-mode)) + +;; Popup completion-at-point +(use-package corfu + :ensure t + :init + (global-corfu-mode) + :bind + (:map corfu-map + ("SPC" . corfu-insert-separator) + ("C-n" . corfu-next) + ("C-p" . corfu-previous))) + +;; Part of corfu +(use-package corfu-popupinfo + :after corfu + :hook (corfu-mode . corfu-popupinfo-mode) + :custom + (corfu-popupinfo-delay '(0.25 . 0.1)) + (corfu-popupinfo-hide nil) + :config + (corfu-popupinfo-mode)) + +;; Make corfu popup come up in terminal overlay +(use-package corfu-terminal + :if (not (display-graphic-p)) + :ensure t + :config + (corfu-terminal-mode)) + +;; Pretty icons for corfu +(use-package kind-icon + :if (display-graphic-p) + :ensure t + :after corfu + :config + (add-to-list 'corfu-margin-formatters #'kind-icon-margin-formatter)) + +(use-package eshell + :bind (("C-r" . consult-history))) + +;; Orderless: powerful completion style +(use-package orderless + :ensure t + :config + (setq completion-styles '(orderless))) diff --git a/extras/dev.el b/extras/dev.el new file mode 100644 index 0000000..40dd6cf --- /dev/null +++ b/extras/dev.el @@ -0,0 +1,100 @@ +;;; Emacs Bedrock +;;; +;;; Extra config: Development tools + +;;; Usage: Append or require this file from init.el for some software +;;; development-focused packages. +;;; +;;; It is **STRONGLY** recommended that you use the base.el config if you want to +;;; use Eglot. Lots of completion things will work better. +;;; +;;; This will try to use tree-sitter modes for many languages. Please run +;;; +;;; M-x treesit-install-language-grammar +;;; +;;; Before trying to use a treesit mode. + +;;; Contents: +;;; +;;; - Built-in config for developers +;;; - Version Control +;;; - Common file types +;;; - Eglot, the built-in LSP client for Emacs + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;; +;;; Built-in config for developers +;;; +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +(use-package emacs + :config + ;; Treesitter config + + ;; Tell Emacs to prefer the treesitter mode + ;; You'll want to run the command `M-x treesit-install-language-grammar' before editing. + (setq major-mode-remap-alist + '((yaml-mode . yaml-ts-mode) + (bash-mode . bash-ts-mode) + (js2-mode . js-ts-mode) + (typescript-mode . typescript-ts-mode) + (json-mode . json-ts-mode) + (css-mode . css-ts-mode) + (python-mode . python-ts-mode))) + :hook + ;; Auto parenthesis matching + ((prog-mode . electric-pair-mode))) + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;; +;;; Version Control +;;; +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +;; Magit: best Git client to ever exist +(use-package magit + :ensure t + :bind (("s-g" . magit-status) + ("C-c g" . magit-status))) + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;; +;;; Common file types +;;; +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +(use-package markdown-mode + :hook ((markdown-mode . visual-line-mode))) + +(use-package yaml-mode + :ensure t) + +(use-package json-mode + :ensure t) + +;; Emacs ships with a lot of popular programming language modes. If it's not +;; built in, you're almost certain to find a mode for the language you're +;; looking for with a quick Internet search. + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;; +;;; Eglot, the built-in LSP client for Emacs +;;; +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +(use-package eglot + ;; no :ensure t here because it's built-in + + ;; Configure hooks to automatically turn-on eglot for selected modes + ; :hook + ; (((python-mode ruby-mode elixir-mode) . eglot)) + + :custom + (eglot-send-changes-idle-time 0.1) + + :config + (fset #'jsonrpc--log-event #'ignore) ; massive perf boost---don't log every event + ;; Sometimes you need to tell Eglot where to find the language server + ; (add-to-list 'eglot-server-programs + ; '(haskell-mode . ("haskell-language-server-wrapper" "--lsp"))) + ) diff --git a/extras/email.el b/extras/email.el new file mode 100644 index 0000000..2ff7dd4 --- /dev/null +++ b/extras/email.el @@ -0,0 +1,30 @@ +;;; Emacs Bedrock +;;; +;;; Extra config: Email + +;;; Usage: Append or require this file from init.el for Email in Emacs. You will +;;; need to do some heavy customization depending on your email provider. + +;;; Contents: +;;; +;;; - Core Email Packages +;;; - Sample Setup: Gmail +;;; - Sample Setup: Fastmail + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;; +;;; Core Email Packages +;;; +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;; +;;; Sample Setup: Gmail +;;; +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;; +;;; Sample Setup: Fastmail +;;; +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff --git a/extras/org-intro.txt b/extras/org-intro.txt new file mode 100644 index 0000000..ca56bf4 --- /dev/null +++ b/extras/org-intro.txt @@ -0,0 +1,91 @@ +Many people use Emacs just so they can use org-mode. If you're one of them, +welcome! + +This is a short introduction to get an overview of what org-mode does. + +Org-mode is hard to understand because there are broadly three different things +that org-mode does. They're related but distinct enough to make things +confusing. We'll focus on three different use cases for org-mode: + + - org-mode as markup + - org-mode as a task tracker + - org-mode as a computational notebook + +Org-mode as markup +================== + +Org-mode is first and foremost a lightweight markup language, just like +Markdown. (In fact, they were developed at around the same time.) There are a +few differences in syntax, but if you're already familiar with the ideas behind +Markdown you should be just fine. + +If you've never worked with something like Markdown before, you can think of it +as a system of special characters that indicate some formatting, e.g. you mark +text as being *bold*, _underlined_, or /italicized/ by surrounding it with +asterisks, underscores, and slashes respectively. + +Once you've authored a file with org-mode, you can use Emacs to export the +org-mode into another format, like HTML, Markdown, ODT, or PDF with LaTeX. Run +`org-export` to bring up the export menu. + +Org-mode as a task tracker +========================== + +Like Markdown, org-mode has headings. Instead of starting headings with one or +more "#" signs, org-mode uses asterisks. An org mode heading looks like this: + + * Heading + + Lorem ipsum… + + ** Subheading + + Dolor sit amet… + + ** Another subheading + + Magister Ludi… + + * Another top-level heading + + Quam elivit… + +*Any* heading can become a task. This might feel overwhelming, and rightly so. +For now, just start with a list of top-level headings with the TODO keyword. + + * TODO Do important thing + * TODO Take Yessica to get her haircut + * TODO Finish configuring Emacs + +You can associate deadlines, notes, tags, attachments, different TODO states, +etc. to these headlines. Read the org-mode manual for more information. + +While there are cases when you might want to put a TODO item in an arbitrary +file, most of the time these TODOs will go into an agenda file. + +The `org-directory` and `org-agenda-files` variables control where org-mode +looks to find TODO items to generate what's called an agenda: an agenda is a +view of all your headlines with TODO (or other states like WAITING, as +configured) status set. The agenda usually organizes these by date and makes it +easy for you to sort, filter, and modify these items. + +For now, just start with one org-mode file at `~/Documents/org/inbox.org`. Put +some headings with TODO keywords in that file and save it. Be sure to add a +deadline for today. (You can run `org-deadline` to do this automatically for +you.) Now invoke `org-agenda`. This should pull up a buffer with those headlines +you just added in it. + +There are too many ways you can configure this for me to describe here. Just +start small: have one or two files in the `org-agenda-files` list to act as +where you put your TODO items. Use the agenda to view and modify those TODOs. + +Org-mode as a computational notebook +==================================== + +You can use org-mode as a kind of computational notebook. Org-mode lets you have +blocks of source code in line, and then you can instruct org-mode to evaluate +those blocks of code for you. + +The setup varies from language to language, and I'm not going to try to explain +that here. If you're writing code, you should be familiar with reading +documentation, so I'll let you do that yourself. :) diff --git a/extras/org.el b/extras/org.el new file mode 100644 index 0000000..307528b --- /dev/null +++ b/extras/org.el @@ -0,0 +1,176 @@ +;;; Emacs Bedrock +;;; +;;; Extra config: Org-mode starter config + +;;; Usage: Append or require this file from init.el for some software +;;; development-focused packages. +;;; +;;; Org-mode is a fantastically powerful package. It does a lot of things, which +;;; makes it a little difficult to understand at first. +;;; +;;; We will configure Org-mode in phases. Work with each phase as you are +;;; comfortable. +;;; +;;; YOU NEED TO CONFIGURE SOME VARIABLES! The most important variable is the +;;; `org-directory', which tells org-mode where to look to find your agenda +;;; files. + +;;; See "org-intro.txt" for a high-level overview. + +;;; Contents: +;;; +;;; - Critical variables +;;; - Phase 1: editing and exporting files +;;; - Phase 2: todos, agenda generation, and task tracking +;;; - Phase 3: extensions (org-roam, etc.) + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;; +;;; Critical variables +;;; +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +;;; These variables need to be set for Org-mode's full power to be unlocked! +;;; +;;; You can read the documentation for any variable with `C-h v'. If you have +;;; Consult configured (see the `base.el' file) then it should help you find +;;; what you're looking for. + +;;; Phase 1 variables + +;;; Phase 2 variables + +;; Agenda variables +(setq org-directory "~/Documents/org/") ; Non-absolute paths for agenda and + ; capture templates will look here. + +(setq org-agenda-files '("inbox.org" "work.org")) + +;; Default tags +(setq org-tag-alist '( + ;; locale + (:startgroup) + ("home" . ?h) + ("work" . ?w) + ("school" . ?s) + (:endgroup) + (:newline) + ;; scale + (:startgroup) + ("one-shot" . ?o) + ("project" . ?j) + ("tiny" . ?t) + (:endgroup) + ;; misc + ("meta") + ("review") + ("reading"))) + +;; Org-refile: where should org-refile look? +(setq org-refile-targets 'FIXME) + +;;; Phase 3 variables + +;; Org-roam variables +(setq org-roam-directory "~/Documents/org-roam/") +(setq org-roam-index-file "~/Documents/org-roam/index.org") + +;;; Optional variables + +;; Advanced: Custom link types +;; This example is for linking a person's 7-character ID to their page on the +;; free genealogy website Family Search. +(setq org-link-abbrev-alist + '(("family_search" . "https://www.familysearch.org/tree/person/details/%s"))) + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;; +;;; Phase 1: editing and exporting files +;;; +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +(use-package org + :hook ((org-mode . visual-line-mode) ; wrap lines at word breaks + (org-mode . flyspell-mode)) ; spell checking! + + :bind (:map global-map + ("C-c l s" . org-store-link) ; Mnemonic: link → store + ("C-c l i" . org-insert-link-global)) ; Mnemonic: link → insert + :config + (require 'oc-csl) ; citation support + (add-to-list 'org-export-backends 'md) + + ;; Make org-open-at-point follow file links in the same window + (setf (cdr (assoc 'file org-link-frame-setup)) 'find-file) + + ;; Make exporting quotes better + (setq org-export-with-smart-quotes t) + ) + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;; +;;; Phase 2: todos, agenda generation, and task tracking +;;; +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +;; Yes, you can have multiple use-package declarations. It's best if their +;; configs don't overlap. Once you've reached Phase 2, I'd recommend merging the +;; config from Phase 1. I've broken it up here for the sake of clarity. +(use-package org + :config + ;; Instead of just two states (TODO, DONE) we set up a few different states + ;; that a task can be in. + (setq org-todo-keywords + '((sequence "TODO(t)" "WAITING(w@/!)" "STARTED(s!)" "|" "DONE(d!)" "OBSOLETE(o@)"))) + + ;; Refile configuration + (setq org-outline-path-complete-in-steps nil) + (setq org-refile-use-outline-path 'file) + + (setq org-capture-templates + '(("c" "Default Capture" entry (file "inbox.org") + "* TODO %?\n%U\n%i") + ;; Capture and keep an org-link to the thing we're currently working with + ("r" "Capture with Reference" entry (file "inbox.org") + "* TODO %?\n%U\n%i\n%a") + ;; Define a section + ("w" "Work") + ("wm" "Work meeting" entry (file+headline "work.org" "Meetings") + "** TODO %?\n%U\n%i\n%a") + ("wr" "Work report" entry (file+headline "work.org" "Reports") + "** TODO %?\n%U\n%i\n%a"))) + + (setq org-agenda-custom-commands + '(("n" "Agenda and All Todos" + ((agenda) + (todo))) + ("w" "Work" agenda "" + ((org-agenda-files '("work.org"))))))) + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;; +;;; Phase 3: extensions (org-roam, etc.) +;;; +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +(use-package org-roam + :ensure t + :config + (org-roam-db-autosync-mode) + ;; Dedicated side window for backlinks + (add-to-list 'display-buffer-alist + '("\\*org-roam\\*" + (display-buffer-in-side-window) + (side . right) + (window-width . 0.4) + (window-height . fit-window-to-buffer)))) + +;; Pretty web interface for org-roam +;(use-package org-roam-ui +; :ensure t +; :after org-roam +; :config +; (setq org-roam-ui-sync-theme t +; org-roam-ui-follow t +; org-roam-ui-update-on-save t +; org-roam-ui-open-on-start t)) diff --git a/extras/researcher.el b/extras/researcher.el new file mode 100644 index 0000000..a94e1d4 --- /dev/null +++ b/extras/researcher.el @@ -0,0 +1,96 @@ +;;; Emacs Bedrock +;;; +;;; Extra config: Researcher + +;;; Usage: Append or require this file from init.el for research helps. If you +;;; write papers in LaTeX and need to manage your citations or keep track of +;;; notes, this package is for you. +;;; +;;; Highly recommended to enable this file with the UI enhancements in +;;; `base.el', as citar works best with the Vertico completing-read interface. +;;; Also recommended is the `writer.el' extra config, which adds some nice features for +;;; spell-checking etc. + +;;; Contents: +;;; +;;; - Citation Management +;;; - Authoring +;;; - Note Taking: Org-Roam +;;; - Note Taking: Denote + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;; +;;; Critical variables +;;; +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +;;; These variables must be set for citar to work properly! + +(setq citar-bibliography '("~/refs.bib")) ; paths to your bibtex files + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;; +;;; Citation Management +;;; +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +(use-package citar + :ensure t + :bind (("C-c b" . citar-insert-citation) + :map minibuffer-local-map + ("M-b" . citar-insert-preset)) + :custom + ;; Allows you to customize what citar-open does + (citar-file-open-functions '(("html" . citar-file-open-external) + ;; ("pdf" . citar-file-open-external) + (t . find-file)))) + +;; Optional: if you have the embark package installed, enable the ability to act +;; on citations with citar by invoking `embark-act'. +;(use-package citar-embark +; :after citar embark +; :diminish "" +; :no-require +; :config (citar-embark-mode)) + +(use-package citar-org-roam + :diminish "" + ;; To get this to work both citar *and* org-roam have to have been used + :after citar org-roam + :no-require + :config + (citar-org-roam-mode) + (setq citar-org-roam-note-title-template "${author} - ${title}\n#+filetags: ${tags}")) + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;; +;;; Authoring +;;; +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;; +;;; Note Taking: Org-Roam +;;; +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +(use-package org-roam + :ensure t + :config + ;; Make sure the backlinks buffer always shows up in a side window + (add-to-list 'display-buffer-alist + '("\\*org-roam\\*" + (display-buffer-in-side-window) + (side . right) + (window-width . 0.4) + (window-height . fit-window-to-buffer))) + + (org-roam-db-autosync-mode)) + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;; +;;; Note Taking: Denote +;;; +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +;; TODO diff --git a/extras/vim-like.el b/extras/vim-like.el new file mode 100644 index 0000000..9506dc1 --- /dev/null +++ b/extras/vim-like.el @@ -0,0 +1,32 @@ +;;; Emacs Bedrock +;;; +;;; Extra config: Vim emulation + +;;; Usage: Append or require this file from init.el for bindings in Emacs. + +;;; Contents: +;;; +;;; - Core Packages + +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;;; +;;; Core Packages +;;; +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +;; Evil: vi emulation +(use-package evil + :ensure t + + :init + (setq evil-respect-visual-line-mode t) + (setq evil-undo-system 'undo-redo) + + ;; Enable this if you want C-u to scroll up, more like pure Vim + ;(setq evil-want-C-u-scroll t) + + :config + (evil-mode) + + ;; Configuring initial major mode for some modes + (evil-set-initial-state 'vterm-mode 'emacs)) diff --git a/init.el b/init.el index 22eabbd..7a6efe7 100644 --- a/init.el +++ b/init.el @@ -18,7 +18,7 @@ ;;; - Interface enhancements/defaults ;;; - Tab-bar configuration ;;; - Theme -;;; - Optional mixins +;;; - Optional extras ;;; - Built-in customization framework ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; @@ -116,7 +116,7 @@ If the new path's directories does not exist, create them." (keymap-set minibuffer-mode-map "TAB" 'minibuffer-complete) ; TAB acts more like how it does in the shell ;; For a fancier built-in completion option, try ido-mode or fido-mode. See also -;; the file mixins/base.el +;; the file extras/base.el ;(fido-vertical-mode) ;(setq icomplete-delay-completions-threshold 4000) @@ -191,34 +191,35 @@ If the new path's directories does not exist, create them." ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; -;;; Optional mixins +;;; Optional extras ;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;; Uncomment the (load-file …) lines or copy from the mixin/ files as desired +;; Uncomment the (load-file …) lines or copy code from the extras/ elisp files +;; as desired ;; UI/UX enhancements mostly focused on minibuffer and autocompletion interfaces ;; These ones are *strongly* recommended! -;(load-file (expand-file-name "mixins/base.el" user-emacs-directory)) +;(load-file (expand-file-name "extras/base.el" user-emacs-directory)) ;; Packages for software development -;(load-file (expand-file-name "mixins/dev.el" user-emacs-directory)) +;(load-file (expand-file-name "extras/dev.el" user-emacs-directory)) ;; Vim-bindings in Emacs (evil-mode configuration) -;(load-file (expand-file-name "mixins/vim-like.el" user-emacs-directory)) +;(load-file (expand-file-name "extras/vim-like.el" user-emacs-directory)) ;; Org-mode configuration -;; WARNING: need to customize things inside the mixin file before use! See -;; the file mixins/org-intro.txt for help. -;(load-file (expand-file-name "mixins/org.el" user-emacs-directory)) +;; WARNING: need to customize things inside the elisp file before use! See +;; the file extras/org-intro.txt for help. +;(load-file (expand-file-name "extras/org.el" user-emacs-directory)) ;; Email configuration in Emacs -;; WARNING: needs the `mu' program installed; see the mixin file for more +;; WARNING: needs the `mu' program installed; see the elisp file for more ;; details. -;(load-file (expand-file-name "mixins/email.el" user-emacs-directory)) +;(load-file (expand-file-name "extras/email.el" user-emacs-directory)) ;; Tools for academic researchers -;(load-file (expand-file-name "mixins/researcher.el" user-emacs-directory)) +;(load-file (expand-file-name "extras/researcher.el" user-emacs-directory)) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; diff --git a/mixins/base.el b/mixins/base.el deleted file mode 100644 index dbea499..0000000 --- a/mixins/base.el +++ /dev/null @@ -1,134 +0,0 @@ -;;; Emacs Bedrock -;;; -;;; Mixin: Base UI enhancements - -;;; Usage: Append or require this file from init.el to enable various UI/UX -;;; enhancements. - -;;; Contents: -;;; -;;; - Motion aids -;;; - Power-ups: Embark and Consult -;;; - Minibuffer and completion - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;;; -;;; Motion aids -;;; -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - -(use-package avy - :ensure t - :demand t - :bind (("C-c j" . avy-goto-line) - ("s-j" . avy-goto-char-timer))) - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;;; -;;; Power-ups: Embark and Consult -;;; -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - -;; Consult: Misc. enhanced commands -(use-package consult - :ensure t - ;; Other good things to bind: consult-ripgrep, consult-line-multi, - ;; consult-history, consult-outline - :bind (("C-x b" . consult-buffer) ; orig. switch-to-buffer - ("M-y" . consult-yank-pop) ; orig. yank-pop - ("C-s" . consult-line)) ; orig. isearch - :config - ;; Narrowing lets you restrict results to certain groups of candidates - (setq consult-narrow-key "<")) - -(use-package embark - :ensure t - :demand t - :after avy - :bind (("C-c a" . embark-act)) ; bind this to an easy key to hit - :init - ;; Add the option to run embark when using avy - (defun bedrock/avy-action-embark (pt) - (unwind-protect - (save-excursion - (goto-char pt) - (embark-act)) - (select-window - (cdr (ring-ref avy-ring 0)))) - t) - - ;; After invoking avy-goto-char-timer, hit "." to run embark at the next - ;; candidate you select - (setf (alist-get ?. avy-dispatch-alist) 'bedrock/avy-action-embark)) - -(use-package embark-consult - :ensure t) - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;;; -;;; Minibuffer and completion -;;; -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - -;; Vertico: better vertical completion for minibuffer commands -(use-package vertico - :ensure t - :init - ;; You'll want to make sure that e.g. fido-mode isn't enabled - (vertico-mode)) - -(use-package vertico-directory - :after vertico - :bind (:map vertico-map - ("M-DEL" . vertico-directory-delete-word))) - -;; Marginalia: annotations for minibuffer -(use-package marginalia - :ensure t - :config - (marginalia-mode)) - -;; Popup completion-at-point -(use-package corfu - :ensure t - :init - (global-corfu-mode) - :bind - (:map corfu-map - ("SPC" . corfu-insert-separator) - ("C-n" . corfu-next) - ("C-p" . corfu-previous))) - -;; Part of corfu -(use-package corfu-popupinfo - :after corfu - :hook (corfu-mode . corfu-popupinfo-mode) - :custom - (corfu-popupinfo-delay '(0.25 . 0.1)) - (corfu-popupinfo-hide nil) - :config - (corfu-popupinfo-mode)) - -;; Make corfu popup come up in terminal overlay -(use-package corfu-terminal - :if (not (display-graphic-p)) - :ensure t - :config - (corfu-terminal-mode)) - -;; Pretty icons for corfu -(use-package kind-icon - :if (display-graphic-p) - :ensure t - :after corfu - :config - (add-to-list 'corfu-margin-formatters #'kind-icon-margin-formatter)) - -(use-package eshell - :bind (("C-r" . consult-history))) - -;; Orderless: powerful completion style -(use-package orderless - :ensure t - :config - (setq completion-styles '(orderless))) diff --git a/mixins/dev.el b/mixins/dev.el deleted file mode 100644 index ec8658a..0000000 --- a/mixins/dev.el +++ /dev/null @@ -1,100 +0,0 @@ -;;; Emacs Bedrock -;;; -;;; Mixin: Development tools - -;;; Usage: Append or require this file from init.el for some software -;;; development-focused packages. -;;; -;;; It is **STRONGLY** recommended that you use the base.el mixin if you want to -;;; use Eglot. Lots of completion things will work better. -;;; -;;; This will try to use tree-sitter modes for many languages. Please run -;;; -;;; M-x treesit-install-language-grammar -;;; -;;; Before trying to use a treesit mode. - -;;; Contents: -;;; -;;; - Built-in config for developers -;;; - Version Control -;;; - Common file types -;;; - Eglot, the built-in LSP client for Emacs - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;;; -;;; Built-in config for developers -;;; -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - -(use-package emacs - :config - ;; Treesitter config - - ;; Tell Emacs to prefer the treesitter mode - ;; You'll want to run the command `M-x treesit-install-language-grammar' before editing. - (setq major-mode-remap-alist - '((yaml-mode . yaml-ts-mode) - (bash-mode . bash-ts-mode) - (js2-mode . js-ts-mode) - (typescript-mode . typescript-ts-mode) - (json-mode . json-ts-mode) - (css-mode . css-ts-mode) - (python-mode . python-ts-mode))) - :hook - ;; Auto parenthesis matching - ((prog-mode . electric-pair-mode))) - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;;; -;;; Version Control -;;; -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - -;; Magit: best Git client to ever exist -(use-package magit - :ensure t - :bind (("s-g" . magit-status) - ("C-c g" . magit-status))) - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;;; -;;; Common file types -;;; -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - -(use-package markdown-mode - :hook ((markdown-mode . visual-line-mode))) - -(use-package yaml-mode - :ensure t) - -(use-package json-mode - :ensure t) - -;; Emacs ships with a lot of popular programming language modes. If it's not -;; built in, you're almost certain to find a mode for the language you're -;; looking for with a quick Internet search. - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;;; -;;; Eglot, the built-in LSP client for Emacs -;;; -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - -(use-package eglot - ;; no :ensure t here because it's built-in - - ;; Configure hooks to automatically turn-on eglot for selected modes - ; :hook - ; (((python-mode ruby-mode elixir-mode) . eglot)) - - :custom - (eglot-send-changes-idle-time 0.1) - - :config - (fset #'jsonrpc--log-event #'ignore) ; massive perf boost---don't log every event - ;; Sometimes you need to tell Eglot where to find the language server - ; (add-to-list 'eglot-server-programs - ; '(haskell-mode . ("haskell-language-server-wrapper" "--lsp"))) - ) diff --git a/mixins/email.el b/mixins/email.el deleted file mode 100644 index 4146231..0000000 --- a/mixins/email.el +++ /dev/null @@ -1,30 +0,0 @@ -;;; Emacs Bedrock -;;; -;;; Mixin: Email - -;;; Usage: Append or require this file from init.el for Email in Emacs. You will -;;; need to do some heavy customization depending on your email provider. - -;;; Contents: -;;; -;;; - Core Email Packages -;;; - Sample Setup: Gmail -;;; - Sample Setup: Fastmail - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;;; -;;; Core Email Packages -;;; -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;;; -;;; Sample Setup: Gmail -;;; -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;;; -;;; Sample Setup: Fastmail -;;; -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; diff --git a/mixins/org-intro.txt b/mixins/org-intro.txt deleted file mode 100644 index ca56bf4..0000000 --- a/mixins/org-intro.txt +++ /dev/null @@ -1,91 +0,0 @@ -Many people use Emacs just so they can use org-mode. If you're one of them, -welcome! - -This is a short introduction to get an overview of what org-mode does. - -Org-mode is hard to understand because there are broadly three different things -that org-mode does. They're related but distinct enough to make things -confusing. We'll focus on three different use cases for org-mode: - - - org-mode as markup - - org-mode as a task tracker - - org-mode as a computational notebook - -Org-mode as markup -================== - -Org-mode is first and foremost a lightweight markup language, just like -Markdown. (In fact, they were developed at around the same time.) There are a -few differences in syntax, but if you're already familiar with the ideas behind -Markdown you should be just fine. - -If you've never worked with something like Markdown before, you can think of it -as a system of special characters that indicate some formatting, e.g. you mark -text as being *bold*, _underlined_, or /italicized/ by surrounding it with -asterisks, underscores, and slashes respectively. - -Once you've authored a file with org-mode, you can use Emacs to export the -org-mode into another format, like HTML, Markdown, ODT, or PDF with LaTeX. Run -`org-export` to bring up the export menu. - -Org-mode as a task tracker -========================== - -Like Markdown, org-mode has headings. Instead of starting headings with one or -more "#" signs, org-mode uses asterisks. An org mode heading looks like this: - - * Heading - - Lorem ipsum… - - ** Subheading - - Dolor sit amet… - - ** Another subheading - - Magister Ludi… - - * Another top-level heading - - Quam elivit… - -*Any* heading can become a task. This might feel overwhelming, and rightly so. -For now, just start with a list of top-level headings with the TODO keyword. - - * TODO Do important thing - * TODO Take Yessica to get her haircut - * TODO Finish configuring Emacs - -You can associate deadlines, notes, tags, attachments, different TODO states, -etc. to these headlines. Read the org-mode manual for more information. - -While there are cases when you might want to put a TODO item in an arbitrary -file, most of the time these TODOs will go into an agenda file. - -The `org-directory` and `org-agenda-files` variables control where org-mode -looks to find TODO items to generate what's called an agenda: an agenda is a -view of all your headlines with TODO (or other states like WAITING, as -configured) status set. The agenda usually organizes these by date and makes it -easy for you to sort, filter, and modify these items. - -For now, just start with one org-mode file at `~/Documents/org/inbox.org`. Put -some headings with TODO keywords in that file and save it. Be sure to add a -deadline for today. (You can run `org-deadline` to do this automatically for -you.) Now invoke `org-agenda`. This should pull up a buffer with those headlines -you just added in it. - -There are too many ways you can configure this for me to describe here. Just -start small: have one or two files in the `org-agenda-files` list to act as -where you put your TODO items. Use the agenda to view and modify those TODOs. - -Org-mode as a computational notebook -==================================== - -You can use org-mode as a kind of computational notebook. Org-mode lets you have -blocks of source code in line, and then you can instruct org-mode to evaluate -those blocks of code for you. - -The setup varies from language to language, and I'm not going to try to explain -that here. If you're writing code, you should be familiar with reading -documentation, so I'll let you do that yourself. :) diff --git a/mixins/org.el b/mixins/org.el deleted file mode 100644 index 0d02e24..0000000 --- a/mixins/org.el +++ /dev/null @@ -1,176 +0,0 @@ -;;; Emacs Bedrock -;;; -;;; Mixin: Org-mode starter config - -;;; Usage: Append or require this file from init.el for some software -;;; development-focused packages. -;;; -;;; Org-mode is a fantastically powerful package. It does a lot of things, which -;;; makes it a little difficult to understand at first. -;;; -;;; We will configure Org-mode in phases. Work with each phase as you are -;;; comfortable. -;;; -;;; YOU NEED TO CONFIGURE SOME VARIABLES! The most important variable is the -;;; `org-directory', which tells org-mode where to look to find your agenda -;;; files. - -;;; See "org-intro.txt" for a high-level overview. - -;;; Contents: -;;; -;;; - Critical variables -;;; - Phase 1: editing and exporting files -;;; - Phase 2: todos, agenda generation, and task tracking -;;; - Phase 3: extensions (org-roam, etc.) - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;;; -;;; Critical variables -;;; -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - -;;; These variables need to be set for Org-mode's full power to be unlocked! -;;; -;;; You can read the documentation for any variable with `C-h v'. If you have -;;; Consult configured (see the `base.el' file) then it should help you find -;;; what you're looking for. - -;;; Phase 1 variables - -;;; Phase 2 variables - -;; Agenda variables -(setq org-directory "~/Documents/org/") ; Non-absolute paths for agenda and - ; capture templates will look here. - -(setq org-agenda-files '("inbox.org" "work.org")) - -;; Default tags -(setq org-tag-alist '( - ;; locale - (:startgroup) - ("home" . ?h) - ("work" . ?w) - ("school" . ?s) - (:endgroup) - (:newline) - ;; scale - (:startgroup) - ("one-shot" . ?o) - ("project" . ?j) - ("tiny" . ?t) - (:endgroup) - ;; misc - ("meta") - ("review") - ("reading"))) - -;; Org-refile: where should org-refile look? -(setq org-refile-targets 'FIXME) - -;;; Phase 3 variables - -;; Org-roam variables -(setq org-roam-directory "~/Documents/org-roam/") -(setq org-roam-index-file "~/Documents/org-roam/index.org") - -;;; Optional variables - -;; Advanced: Custom link types -;; This example is for linking a person's 7-character ID to their page on the -;; free genealogy website Family Search. -(setq org-link-abbrev-alist - '(("family_search" . "https://www.familysearch.org/tree/person/details/%s"))) - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;;; -;;; Phase 1: editing and exporting files -;;; -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - -(use-package org - :hook ((org-mode . visual-line-mode) ; wrap lines at word breaks - (org-mode . flyspell-mode)) ; spell checking! - - :bind (:map global-map - ("C-c l s" . org-store-link) ; Mnemonic: link → store - ("C-c l i" . org-insert-link-global)) ; Mnemonic: link → insert - :config - (require 'oc-csl) ; citation support - (add-to-list 'org-export-backends 'md) - - ;; Make org-open-at-point follow file links in the same window - (setf (cdr (assoc 'file org-link-frame-setup)) 'find-file) - - ;; Make exporting quotes better - (setq org-export-with-smart-quotes t) - ) - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;;; -;;; Phase 2: todos, agenda generation, and task tracking -;;; -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - -;; Yes, you can have multiple use-package declarations. It's best if their -;; configs don't overlap. Once you've reached Phase 2, I'd recommend merging the -;; config from Phase 1. I've broken it up here for the sake of clarity. -(use-package org - :config - ;; Instead of just two states (TODO, DONE) we set up a few different states - ;; that a task can be in. - (setq org-todo-keywords - '((sequence "TODO(t)" "WAITING(w@/!)" "STARTED(s!)" "|" "DONE(d!)" "OBSOLETE(o@)"))) - - ;; Refile configuration - (setq org-outline-path-complete-in-steps nil) - (setq org-refile-use-outline-path 'file) - - (setq org-capture-templates - '(("c" "Default Capture" entry (file "inbox.org") - "* TODO %?\n%U\n%i") - ;; Capture and keep an org-link to the thing we're currently working with - ("r" "Capture with Reference" entry (file "inbox.org") - "* TODO %?\n%U\n%i\n%a") - ;; Define a section - ("w" "Work") - ("wm" "Work meeting" entry (file+headline "work.org" "Meetings") - "** TODO %?\n%U\n%i\n%a") - ("wr" "Work report" entry (file+headline "work.org" "Reports") - "** TODO %?\n%U\n%i\n%a"))) - - (setq org-agenda-custom-commands - '(("n" "Agenda and All Todos" - ((agenda) - (todo))) - ("w" "Work" agenda "" - ((org-agenda-files '("work.org"))))))) - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;;; -;;; Phase 3: extensions (org-roam, etc.) -;;; -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - -(use-package org-roam - :ensure t - :config - (org-roam-db-autosync-mode) - ;; Dedicated side window for backlinks - (add-to-list 'display-buffer-alist - '("\\*org-roam\\*" - (display-buffer-in-side-window) - (side . right) - (window-width . 0.4) - (window-height . fit-window-to-buffer)))) - -;; Pretty web interface for org-roam -;(use-package org-roam-ui -; :ensure t -; :after org-roam -; :config -; (setq org-roam-ui-sync-theme t -; org-roam-ui-follow t -; org-roam-ui-update-on-save t -; org-roam-ui-open-on-start t)) diff --git a/mixins/researcher.el b/mixins/researcher.el deleted file mode 100644 index 6d8bae8..0000000 --- a/mixins/researcher.el +++ /dev/null @@ -1,96 +0,0 @@ -;;; Emacs Bedrock -;;; -;;; Mixin: Researcher - -;;; Usage: Append or require this file from init.el for research helps. If you -;;; write papers in LaTeX and need to manage your citations or keep track of -;;; notes, this package is for you. -;;; -;;; Highly recommended to enable this mixin with the UI enhancements in -;;; `base.el', as citar works best with the Vertico completing-read interface. -;;; Also recommended is the `writer.el' mixin, which adds some nice features for -;;; spell-checking etc. - -;;; Contents: -;;; -;;; - Citation Management -;;; - Authoring -;;; - Note Taking: Org-Roam -;;; - Note Taking: Denote - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;;; -;;; Critical variables -;;; -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - -;;; These variables must be set for citar to work properly! - -(setq citar-bibliography '("~/refs.bib")) ; paths to your bibtex files - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;;; -;;; Citation Management -;;; -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - -(use-package citar - :ensure t - :bind (("C-c b" . citar-insert-citation) - :map minibuffer-local-map - ("M-b" . citar-insert-preset)) - :custom - ;; Allows you to customize what citar-open does - (citar-file-open-functions '(("html" . citar-file-open-external) - ;; ("pdf" . citar-file-open-external) - (t . find-file)))) - -;; Optional: if you have the embark package installed, enable the ability to act -;; on citations with citar by invoking `embark-act'. -;(use-package citar-embark -; :after citar embark -; :diminish "" -; :no-require -; :config (citar-embark-mode)) - -(use-package citar-org-roam - :diminish "" - ;; To get this to work both citar *and* org-roam have to have been used - :after citar org-roam - :no-require - :config - (citar-org-roam-mode) - (setq citar-org-roam-note-title-template "${author} - ${title}\n#+filetags: ${tags}")) - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;;; -;;; Authoring -;;; -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;;; -;;; Note Taking: Org-Roam -;;; -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - -(use-package org-roam - :ensure t - :config - ;; Make sure the backlinks buffer always shows up in a side window - (add-to-list 'display-buffer-alist - '("\\*org-roam\\*" - (display-buffer-in-side-window) - (side . right) - (window-width . 0.4) - (window-height . fit-window-to-buffer))) - - (org-roam-db-autosync-mode)) - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;;; -;;; Note Taking: Denote -;;; -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - -;; TODO diff --git a/mixins/vim-like.el b/mixins/vim-like.el deleted file mode 100644 index f150e4a..0000000 --- a/mixins/vim-like.el +++ /dev/null @@ -1,32 +0,0 @@ -;;; Emacs Bedrock -;;; -;;; Mixin: Vim emulation - -;;; Usage: Append or require this file from init.el for bindings in Emacs. - -;;; Contents: -;;; -;;; - Core Packages - -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; -;;; -;;; Core Packages -;;; -;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; - -;; Evil: vi emulation -(use-package evil - :ensure t - - :init - (setq evil-respect-visual-line-mode t) - (setq evil-undo-system 'undo-redo) - - ;; Enable this if you want C-u to scroll up, more like pure Vim - ;(setq evil-want-C-u-scroll t) - - :config - (evil-mode) - - ;; Configuring initial major mode for some modes - (evil-set-initial-state 'vterm-mode 'emacs)) -- cgit v1.2.3