From f8478aa2cb0516bc92c1046203caa72eeb0b2ced Mon Sep 17 00:00:00 2001 From: Curt Spark Date: Sun, 12 Apr 2020 01:01:38 +0100 Subject: [PATCH] Readme.org --- README.org | 76 +----------------------------------------------------- 1 file changed, 1 insertion(+), 75 deletions(-) mode change 100644 => 120000 README.org diff --git a/README.org b/README.org deleted file mode 100644 index 9536da3..0000000 --- a/README.org +++ /dev/null @@ -1,75 +0,0 @@ -#+TITLE: Bloxie's Emacs Configuration -#+CREATOR: Bloxiebird - -* Introduction -Welcome to my Emacs configuration! - - -* Config -** Appearance -*** Remove Tool Bar -#+BEGIN_SRC emacs-lisp - (tool-bar-mode -1) -#+END_SRC -*** Remove Menu Bar -#+BEGIN_SRC emacs-lisp - (menu-bar-mode -1) -#+END_SRC -*** Remove Scroll Bar -#+BEGIN_SRC emacs-lisp - (scroll-bar-mode -1) -#+END_SRC -** Evil Mode -#+BEGIN_SRC emacs-lisp - (use-package evil - :ensure t - :init - (evil-mode 1)) -#+END_SRC -** Org Mode -*** Org Bullets -#+BEGIN_SRC emacs-lisp - (use-package org-bullets - :ensure t - :config - (add-hook 'org-mode-hook (lambda () (org-bullets-mode)))) -#+END_SRC -*** Enable Indent Mode -#+BEGIN_SRC emacs-lisp - (add-hook 'org-mode-hook 'org-indent-mode) -#+END_SRC -*** Enable Beamer Support -#+BEGIN_SRC emacs-lisp - (add-hook 'org-mode-hook 'org-beamer-mode) -#+END_SRC -** Auto Completion -*** Ivy -#+BEGIN_SRC emacs-lisp - (use-package ivy - :ensure t - :init - (ivy-mode 1)) -#+END_SRC -*** Company -#+BEGIN_SRC emacs-lisp - (use-package company - :ensure t - :init - (global-company-mode 1)) -#+END_SRC -*** Which Key -#+BEGIN_SRC emacs-lisp - (use-package which-key - :ensure t - :init - (which-key-mode)) -#+END_SRC -** Spell Correction -*** Flyspell Correct Ivy -#+BEGIN_SRC emacs-lisp - (use-package flyspell-correct-ivy - :ensure t - :bind ("C-M-;" . flyspell-correct-wrapper) - :init - (setq flyspell-correct-interface #'flyspell-correct-ivy)) -#+END_SRC diff --git a/README.org b/README.org new file mode 120000 index 0000000..f13833e --- /dev/null +++ b/README.org @@ -0,0 +1 @@ +config.org \ No newline at end of file