commit 81fc69c6d997cd70ae218b2fd1fe7375eb18d72c
parent d46d8f9091f9eaa254400c8c3a865482c9565309
Author: Cem Keylan <cem@ckyln.com>
Date: Mon, 6 Jul 2020 14:13:25 +0300
formatting changes
Diffstat:
1 file changed, 7 insertions(+), 6 deletions(-)
diff --git a/init.org b/init.org
@@ -124,9 +124,8 @@ as soon as possible. By clutter, I mean bars and menus. Also let's disable the
splash screen.
** Loading local files
-Personalized customization can be done through =init-local.el=
-and =init-preload-local.el=. They must be inside your
-=~/.emacs.d/lisp= directory.
+Personalized customization can be done through =init-local.el= and
+=init-preload-local.el=. They must be inside your =~/.emacs.d/lisp= directory.
Those files must end in the following format.
@@ -136,6 +135,7 @@ Those files must end in the following format.
#+END_SRC
Let's load the =init-preload-local= file if it exists.
+
#+BEGIN_SRC emacs-lisp
(add-to-list 'load-path (expand-file-name "lisp" user-emacs-directory))
@@ -149,9 +149,9 @@ Let's load the =init-preload-local= file if it exists.
(setq inhibit-splash-screen t)
#+END_SRC
-If you are using emacs-nox, tool-bar-mode (probably) and
-scroll-bar-mode will not be defined. This checks if they are
-defined, and, if they are, will set them to 0.
+If you are using emacs-nox, tool-bar-mode (probably) and scroll-bar-mode will
+not be defined. This checks if they are defined, and, if they are, will set
+them to 0.
#+BEGIN_SRC emacs-lisp
(when (fboundp 'tool-bar-mode) (tool-bar-mode 0))
@@ -432,6 +432,7 @@ the better.
:after magit
)
#+END_SRC
+
** Flycheck
I use flycheck for async syntax and error checking. It can be really useful