Notes on first section, script fix, some config
This commit is contained in:
parent
4aa2f09642
commit
0f755a3a85
3 changed files with 69 additions and 1 deletions
2
emacs.sh
2
emacs.sh
|
|
@ -1 +1 @@
|
||||||
emacs -q -l $PWD/init.el
|
emacs -q --funcall package-activate-all -l $PWD/init.el
|
||||||
|
|
|
||||||
11
init.el
11
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
|
(use-package geiser-guile
|
||||||
:ensure t)
|
:ensure t)
|
||||||
|
|
||||||
|
(use-package org
|
||||||
|
:config
|
||||||
|
(setq org-hide-emphasis-markers t))
|
||||||
|
|
|
||||||
57
notes.org
57
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
|
||||||
Loading…
Add table
Add a link
Reference in a new issue