summaryrefslogtreecommitdiff
path: root/spacemacs
diff options
context:
space:
mode:
authorKjetil Orbekk <kjetil.orbekk@gmail.com>2015-10-27 17:52:58 -0400
committerKjetil Orbekk <kjetil.orbekk@gmail.com>2015-10-27 17:52:58 -0400
commitc5955bd72a9244968051519e4063f2cabbc8054c (patch)
treefc4b63d75debea8599dcc5fc152dda229ab51c81 /spacemacs
parent6d6affd645bdeba10d9166dddcab6c8b427efc6b (diff)
Update spacemacs config.
Diffstat (limited to 'spacemacs')
-rw-r--r--spacemacs8
1 files changed, 5 insertions, 3 deletions
diff --git a/spacemacs b/spacemacs
index f32ef3d..b13e7b8 100644
--- a/spacemacs
+++ b/spacemacs
@@ -41,7 +41,7 @@ values."
;; shell-default-height 30
;; shell-default-position 'bottom)
;; spell-checking
- syntax-checking
+ ;; syntax-checking
;; version-control
)
;; List of additional packages that will be installed without being
@@ -214,7 +214,9 @@ user code."
(defun kj-bindings ()
"Set up my custom bindings."
(evil-leader/set-key "on" #'nohlsearch)
+ (evil-leader/set-key "of" #'auto-fill-mode)
(spacemacs/declare-prefix "or" "org")
+ (evil-leader/set-key "orT" #'org-agenda-file-to-front)
(evil-leader/set-key "orl" #'org-store-link)
(evil-leader/set-key "ora" #'org-agenda)
(evil-leader/set-key "orc" #'org-capture)
@@ -227,6 +229,7 @@ user code."
'((sequence "TODO(t)" "WAIT(w@/!)" "|" "DONE(d!)" "CANCELED(c@)"))
org-directory "~/org"
org-log-done 'time
+ org-support-shift-select t
org-capture-templates
'(("t" "Todo" entry (file+headline "~/org/in.org" "Tasks")
"* TODO %?\n %i\n %a")))
@@ -236,14 +239,13 @@ user code."
"Configuration function for user code.
This function is called at the very end of Spacemacs initialization after
layers configuration. You are free to put any user code."
+ (load-file "~/.spacemacs.local")
(add-hook 'haskell-mode-hook 'turn-on-haskell-indent)
(setq-default
vc-follow-symlinks nil
web-mode-code-indent-offset 2)
- (nyan-mode)
(kj-bindings)
(kj-org-config)
- (load-file "~/.spacemacs.local")
)
;; Do not write anything past this comment. This is where Emacs will
;; auto-generate custom variable definitions.