projects
/
~bandali
/
configs
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
683f286
)
[emacs] enable auto-revert and always use 4 spaces for indentation
author
Amin Bandali
<amin@aminb.org>
Sun, 22 Jul 2018 20:39:28 +0000
(16:39 -0400)
committer
Amin Bandali
<amin@aminb.org>
Sun, 22 Jul 2018 20:39:28 +0000
(16:39 -0400)
init.org
patch
|
blob
|
blame
|
history
diff --git
a/init.org
b/init.org
index
69ae88f
..
fe307b6
100644
(file)
--- a/
init.org
+++ b/
init.org
@@
-565,6
+565,25
@@
variable.
version-control t)
#+end_src
version-control t)
#+end_src
+*** Auto revert
+
+Enable automatic reloading of changed buffers and files.
+
+#+begin_src emacs-lisp
+(global-auto-revert-mode 1)
+(setq auto-revert-verbose nil
+ global-auto-revert-non-file-buffers t)
+#+end_src
+
+*** Always use space for indentation
+
+#+begin_src emacs-lisp
+(setq-default
+ indent-tabs-mode nil
+ require-final-newline t
+ tab-width 4)
+#+end_src
+
** Packages
The packages in this section are absolutely essential to my everyday
** Packages
The packages in this section are absolutely essential to my everyday