Misc formatting

This commit is contained in:
2020-09-25 14:52:22 +02:00
parent b8189de404
commit 2abd4ff41b
2 changed files with 10 additions and 12 deletions

View File

@@ -15,7 +15,6 @@ Remove all those UI elements. They do not look good and waste space.
(tooltip-mode -1)
(fringe-mode -1)
#+END_SRC
* Set up package repositories
** Require package support
State that we will need package support and define a macro for adding package repos to the archives
@@ -35,19 +34,17 @@ State that we will need package support and define a macro for adding package re
** Ensure ~use-package~ command is present
#+BEGIN_SRC emacs-lisp
(package-initialize)
(package-initialize)
(unless (package-installed-p 'use-package)
(package-refresh-contents)
(package-install 'use-package))
(unless (package-installed-p 'use-package)
(package-refresh-contents)
(package-install 'use-package))
(require 'use-package)
(require 'use-package)
(setq
use-package-always-ensure t
use-package-verbose t)
(setq use-package-always-ensure t)
(use-package gnu-elpa-keyring-update)
(use-package gnu-elpa-keyring-update)
#+END_SRC
* Set Backup Location
@@ -308,7 +305,8 @@ The most important parts are configuring key bindings to quickly access the file
("C-c a s" . org-emphasize)
("C-c a r" . org-ref)
("C-c a e" . outline-show-all)
("C-c a t" . unindent-by-four))
("C-c a t" . unindent-by-four)
("C-c -" . org-edit-special))
:hook ((org-mode . visual-line-mode)
(org-mode . variable-pitch-mode)
(org-mode . org-indent-mode))

View File

@@ -1,7 +1,7 @@
;; init.el -- Marcel Fries <mfries@luxick.de>
;; Configure emacs in a literate style from an org file.
;; The file sould be named "setup-emacs.org". It should be located in your ".emacs.d" directory.
;; The file sould be named "README.org". It should be located in your ".emacs.d" directory.
;; Source at https://git.sr.ht/~luxick/emacs-config
(require 'org)