diff options
author | Adrian Kummerlaender | 2020-08-29 10:28:08 +0200 |
---|---|---|
committer | Adrian Kummerlaender | 2020-08-29 10:28:08 +0200 |
commit | c4a114a5b30a3bace11e27345d15fc9a922701fc (patch) | |
tree | 1cf1f2b1ada954f9289e9e971e39cf5ffc29ede9 /gui/conf | |
parent | 199b699e089ff00460ead86eeaa625c6bfa10f3d (diff) | |
download | nixos_home-c4a114a5b30a3bace11e27345d15fc9a922701fc.tar nixos_home-c4a114a5b30a3bace11e27345d15fc9a922701fc.tar.gz nixos_home-c4a114a5b30a3bace11e27345d15fc9a922701fc.tar.bz2 nixos_home-c4a114a5b30a3bace11e27345d15fc9a922701fc.tar.lz nixos_home-c4a114a5b30a3bace11e27345d15fc9a922701fc.tar.xz nixos_home-c4a114a5b30a3bace11e27345d15fc9a922701fc.tar.zst nixos_home-c4a114a5b30a3bace11e27345d15fc9a922701fc.zip |
Force usage of more up-to-date external org version
This is almost certainly not the simplest way of doing this but as
the derivation builds Emacs anyway it doesn't cost anything to remove
the builtin version of org.
Diffstat (limited to 'gui/conf')
-rw-r--r-- | gui/conf/init.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gui/conf/init.el b/gui/conf/init.el index 5f857df..c8cfe70 100644 --- a/gui/conf/init.el +++ b/gui/conf/init.el @@ -4,6 +4,9 @@ (require 'package) (package-initialize) +(eval-when-compile + (require 'use-package)) + (setq backup-directory-alist `((".*" . "~/.emacs.d/backup"))) (setq custom-file "~/.emacs.d/custom.el") @@ -146,6 +149,7 @@ :ensure t) (use-package org + :ensure t :custom (org-adapt-indentation nil) (org-startup-indented t) |