From 0f755a3a85b7ef1cce9039afc6119e1d18c53a11 Mon Sep 17 00:00:00 2001 From: Ian Keane Date: Sat, 11 Jul 2026 15:20:24 -0400 Subject: [PATCH] Notes on first section, script fix, some config --- emacs.sh | 2 +- init.el | 11 +++++++++++ notes.org | 57 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 69 insertions(+), 1 deletion(-) diff --git a/emacs.sh b/emacs.sh index 25a0ae1..12bfc83 100755 --- a/emacs.sh +++ b/emacs.sh @@ -1 +1 @@ -emacs -q -l $PWD/init.el +emacs -q --funcall package-activate-all -l $PWD/init.el diff --git a/init.el b/init.el index 4cc3b64..75c986f 100644 --- a/init.el +++ b/init.el @@ -1,2 +1,13 @@ +(setq package-archives '(("melpa" . "https://melpa.org/packages/") + ("org" . "https://orgmode.org/elpa/") + ("nongnu" . "https://elpa.nongnu.org/nongnu/") + ("elpa" . "https://elpa.gnu.org/packages/"))) + +(load-theme 'misterioso) + (use-package geiser-guile :ensure t) + +(use-package org + :config + (setq org-hide-emphasis-markers t)) diff --git a/notes.org b/notes.org index e69de29..6600f21 100644 --- a/notes.org +++ b/notes.org @@ -0,0 +1,57 @@ +** First commands: +- Find File :: + +** File Navigation +- Open file :: c-x c-f +- Save file :: c-x c-s + +** Cursor Movement + +** Cut / paste +- Select region with c-spc +- cut :: c-w +- yank (paste) :: c-y + +** Undo / redo +- undo :: c-_ +- reverse undo direction :: c-g + +** Window Management: +- Previous window :: c-x o +- close current window :: c-x 0 +- split current window vertically :: c-x 3 +- split the current window horizontally :: c-x 2 +- close all other windows :: c-x 1 + +** Buffer Management +- List Buffers :: c-x b +- Navigable List :: c-x c-b + +** Dired Navigation + +** Org mode navigation +- New subheading :: alt-ret +- Promote / demote line :: alt - arrow +- Insert link (c-c c-l) + +*** Checkboxes +- Make checkbox :: shift - m - ret +- Check checkbox :: c-c c-x c-b + +*** Source Blocks +- + +*** TODOS +- Toggle :: c-c c-t or shift left, right +- :: + +** Keybinding Concepts + +** Magit + +** Key Help +- m-x describre-bindings +- m-x describe-key + +** Theme +- m-x load-theme