summaryrefslogtreecommitdiffstats
path: root/init.org
diff options
context:
space:
mode:
authorAmin Bandali <bandali@gnu.org>2018-12-09 14:32:35 -0500
committerAmin Bandali <bandali@gnu.org>2018-12-09 14:32:35 -0500
commitb2d378eb2b238e67b10237a5bcd1db75a1a6fddc (patch)
tree446fe736ee333b01ac8a2b2ec42a69d501a294f8 /init.org
parent7d37ee869ebda8dc04eba166649104bd1af8fe7c (diff)
downloadconfigs-b2d378eb2b238e67b10237a5bcd1db75a1a6fddc.tar.gz
configs-b2d378eb2b238e67b10237a5bcd1db75a1a6fddc.tar.xz
configs-b2d378eb2b238e67b10237a5bcd1db75a1a6fddc.zip
[emacs] adjust some load delays
Diffstat (limited to 'init.org')
-rw-r--r--init.org8
1 files changed, 4 insertions, 4 deletions
diff --git a/init.org b/init.org
index f58e843..d7c9aa6 100644
--- a/init.org
+++ b/init.org
@@ -846,7 +846,7 @@ In short, my favourite way of life.
#+begin_src emacs-lisp
(use-package org
- :defer 3
+ :defer 1
:general
(amin--leader-keys
:states 'normal
@@ -990,7 +990,7 @@ Not just how I do git, but /the/ way to do git.
#+begin_src emacs-lisp
(use-package magit
- :defer 2
+ :defer 1
:general (amin--leader-keys "g s" 'magit-status)
:bind ("s-g" . magit-status)
:config
@@ -1286,7 +1286,7 @@ TODO: break this giant source block down into individual org sections.
#+begin_src emacs-lisp
(use-package company
- :defer 2
+ :defer 1
:bind
(:map company-active-map
([tab] . company-complete-common-or-cycle)
@@ -1799,7 +1799,7 @@ Emacs package that displays available keybindings in popup
#+begin_src emacs-lisp
(use-package projectile
- :defer 2
+ :defer t
:bind-keymap ("C-c p" . projectile-command-map)
:config
(projectile-mode)