Skip to content

Instantly share code, notes, and snippets.

View dhawangayash's full-sized avatar

Dhawan Gayash dhawangayash

  • SF Bay Area
View GitHub Profile

org-mode syntax - superscripts and subscripts example 1

  • Add #+OPTIONS: ^:{} to your org-mode file to explicitly enable superscripts and subscripts.
superscripts
To create a superscript put ^{ characters at the start of the superscript text and } at the end of the superscript text, e.g. word^{superscript} will render as wordsuperscript.
subscripts
To create a subscript put _{ characters at the start of the subscript text and } at the end of the subscript text, e.g. word_{subscript} will render as wordsubscript.
Keychord to enable
To enable pretty entites toggle in org mode use M-x org-toggle-pretty-entities
@metamorph
metamorph / .spacemancs
Created May 8, 2015 09:08
Spacemacs - disable flyspell by default
;; Remove fly-spell for markdown and text-files.
(remove-hook 'text-mode-hook 'enable-flyspell-mode)
(remove-hook 'markdown-mode-hook 'enable-flyspell-mode)
@awidegreen
awidegreen / vim_cheatsheet.md
Last active September 26, 2024 21:08
Vim shortcuts

Introduction

  • C-a == Ctrl-a
  • M-a == Alt-a

General

:q        close
:w        write/saves
:wa[!]    write/save all windows [force]
:wq       write/save and close