summaryrefslogtreecommitdiff
path: root/spacemacs
diff options
context:
space:
mode:
authorKjetil Orbekk <kjetil.orbekk@gmail.com>2015-11-25 09:41:42 -0500
committerKjetil Orbekk <kjetil.orbekk@gmail.com>2015-11-25 09:41:42 -0500
commitf64df3a4e474d9a6ef2a69f8f6b6867a6e8d3d10 (patch)
tree2689e6cc9c60db971e132578133b2c089697319b /spacemacs
parent769d3c6a16f7a0837d9c0461a46e1b352f9daa5d (diff)
parent9f6265697a2184fc6050f8b845c8bb43ddc84c2d (diff)
Merge branch 'master' of tesuji.6.orbekk.com:/storage/projects/dotfiles
Diffstat (limited to 'spacemacs')
-rw-r--r--spacemacs10
1 files changed, 5 insertions, 5 deletions
diff --git a/spacemacs b/spacemacs
index 6fc1875..21848b3 100644
--- a/spacemacs
+++ b/spacemacs
@@ -40,7 +40,7 @@ values."
;; (shell :variables
;; shell-default-height 30
;; shell-default-position 'bottom)
- ;; spell-checking
+ spell-checking
;; syntax-checking
;; version-control
)
@@ -86,13 +86,13 @@ values."
;; List of themes, the first of the list is loaded when spacemacs starts.
;; Press <SPC> T n to cycle to the next theme in the list (works great
;; with 2 themes variants, one dark and one light)
- dotspacemacs-themes '(spacemacs-dark
+ dotspacemacs-themes '(monokai
+ spacemacs-dark
base16-bright-dark
spacemacs-light
solarized-light
solarized-dark
leuven
- monokai
zenburn)
;; If non nil the cursor color matches the state color.
dotspacemacs-colorize-cursor-according-to-state t
@@ -215,7 +215,6 @@ user code."
"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)
@@ -236,6 +235,7 @@ user code."
org-capture-templates
'(("t" "Todo" entry (file+headline "~/org/in.org" "Tasks")
"* TODO %?\n %i\n %a")))
+ (eval-after-load "org" '(require 'ox-md nil t))
)
(defun dotspacemacs/user-config ()
@@ -243,11 +243,11 @@ user code."
This function is called at the very end of Spacemacs initialization after
layers configuration. You are free to put any user code."
(setq custom-file "~/.spacemacs.local")
- (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)
(kj-bindings)
(kj-org-config)
+ (load-file "~/.spacemacs.local")
)