Fix small documentation errors
This commit is contained in:
parent
2049a07e59
commit
8104e6527e
25
config.org
25
config.org
|
|
@ -267,6 +267,7 @@ Define functions and set keybindings:
|
||||||
*** LateX Preview
|
*** LateX Preview
|
||||||
This package will automatically convert LaTeX Snippets into viewable LaTeX in your Org Mode Documents.
|
This package will automatically convert LaTeX Snippets into viewable LaTeX in your Org Mode Documents.
|
||||||
LaTeX Snippets can be defined with text between dollar signs. Example : $ax+bx^2$
|
LaTeX Snippets can be defined with text between dollar signs. Example : $ax+bx^2$
|
||||||
|
|
||||||
These LaTeX snippets will also show up when converting to PDF.
|
These LaTeX snippets will also show up when converting to PDF.
|
||||||
Install the package, enable it and ensure that it always is installed:
|
Install the package, enable it and ensure that it always is installed:
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
|
@ -286,13 +287,13 @@ Install the package, enable it and ensure that it always is installed, then add
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
*** Enable Indent Mode
|
*** Enable Indent Mode
|
||||||
A hook that will autmatically make sure that indenting of headers are enabled by default, this is visually useful and emulates code hierarchy.
|
A hook that will autmatically make sure that indenting of headers are enabled by default, this is visually useful and emulates code hierarchy.
|
||||||
Install the package, enable it and ensure that it always is installed, then add a hook to enable the Indentation when on Org Major Mode:
|
Add a hook to enable the Indentation when on Org Major Mode:
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(add-hook 'org-mode-hook 'org-indent-mode)
|
(add-hook 'org-mode-hook 'org-indent-mode)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
*** Enable Beamer Support
|
*** Enable Beamer Support
|
||||||
A hook that will automatically make sure that Beamer Org Mode templates and exportion are enabled by default, for slideshow creation with LaTeX.
|
A hook that will automatically make sure that Beamer Org Mode templates and exportion are enabled by default, for slideshow creation with LaTeX.
|
||||||
Install the package, enable it and ensure that it always is installed, then add a hook to enable the Beamer Mode when on Org Major Mode:
|
Add a hook to enable the Beamer Mode when on Org Major Mode:
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(add-hook 'org-mode-hook 'org-beamer-mode)
|
(add-hook 'org-mode-hook 'org-beamer-mode)
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
@ -327,6 +328,15 @@ Install the package, enable it and ensure that it always is installed, and then
|
||||||
(projectile-mode))
|
(projectile-mode))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
** Auto Completion
|
** Auto Completion
|
||||||
|
*** Which Key
|
||||||
|
Which Key is an insanely useful package that will automatically show you the possible key combinations to finish a binded keychord.
|
||||||
|
Install the package, enable it and ensure that it always is installed, and then make sure that which-key is enabled by default:
|
||||||
|
#+BEGIN_SRC emacs-lisp
|
||||||
|
(use-package which-key
|
||||||
|
:ensure t
|
||||||
|
:init
|
||||||
|
(which-key-mode))
|
||||||
|
#+END_SRC
|
||||||
*** Ivy
|
*** Ivy
|
||||||
Ivy is an autocompletion framework, it will automatically fuzzy find search words for you. This includes file managing, searching, and more via its extensibility and the Counsel package.
|
Ivy is an autocompletion framework, it will automatically fuzzy find search words for you. This includes file managing, searching, and more via its extensibility and the Counsel package.
|
||||||
Install the package, enable it and ensure that it always is installed, and then make sure that ivy-mode is enabled by default:
|
Install the package, enable it and ensure that it always is installed, and then make sure that ivy-mode is enabled by default:
|
||||||
|
|
@ -399,17 +409,8 @@ Install the package, enable it and ensure that it always is installed, and then
|
||||||
:init
|
:init
|
||||||
(company-quickhelp-mode))
|
(company-quickhelp-mode))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
*** Which Key
|
|
||||||
Which Key is an insanely useful package that will automatically show you the possible key combinations to finish a command.
|
|
||||||
Install the package, enable it and ensure that it always is installed, and then make sure that which-key is enabled by default:
|
|
||||||
#+BEGIN_SRC emacs-lisp
|
|
||||||
(use-package which-key
|
|
||||||
:ensure t
|
|
||||||
:init
|
|
||||||
(which-key-mode))
|
|
||||||
#+END_SRC
|
|
||||||
** Multiple Cursors
|
** Multiple Cursors
|
||||||
The Multiple Cursors package is pretty self explanatory; you can select and manipulate multiple lines of the same text at the same time; move the cursors in unison. Etc.
|
The Multiple Cursors package is pretty self explanatory, you can select and manipulate multiple lines of the same text at the same time, move the cursors in unison. Etc.
|
||||||
Install the package, enable it and ensure that it always is installed, and then bind the useful functions to a mnenomic key chord:
|
Install the package, enable it and ensure that it always is installed, and then bind the useful functions to a mnenomic key chord:
|
||||||
#+BEGIN_SRC emacs-lisp
|
#+BEGIN_SRC emacs-lisp
|
||||||
(use-package multiple-cursors
|
(use-package multiple-cursors
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue