Advertisement
Guest User

Untitled

a guest
Mar 15th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lisp 1.34 KB | None | 0 0
  1. (defun dotspacemacs/user-config ()
  2.   "Configuration function for user code.
  3. This function is called at the very end of Spacemacs initialization after
  4. layers configuration.
  5. This is the place where most of your configurations should be done. Unless it is
  6. explicitly specified that a variable should be set before a package is loaded,
  7. you should place your code here."
  8.     (setq yas-snippet-dirs '("~/snippets"))
  9.     (with-eval-after-load 'org
  10.       (org-defkey org-mode-map [(meta return)] 'org-meta-return)
  11.       (add-hook 'org #'smartparens-mode)
  12.       )
  13.     (setq org-agenda-files (append org-agenda-files (org-projectile-todo-files)))
  14.   )
  15.  
  16. ;; Do not write anything past this comment. This is where Emacs will
  17. ;; auto-generate custom variable definitions.
  18. (custom-set-variables
  19.  ;; custom-set-variables was added by Custom.
  20.  ;; If you edit it by hand, you could mess it up, so be careful.
  21.  ;; Your init file should contain only one such instance.
  22.  ;; If there is more than one, they won't work right.
  23.  '(custom-enabled-themes (quote (spacemacs-dark)))
  24.  '(custom-safe-themes
  25.    (quote
  26.     ("bffa9739ce0752a37d9b1eee78fc00ba159748f50dc328af4be661484848e476" default)))
  27.  '(evil-want-Y-yank-to-eol nil)
  28.  '(org-agenda-files
  29.    (quote
  30.     ("/home/fuzzy/Notes/dataimpact_agenda.org" "/home/fuzzy/Notes/notes.org")))
  31.  '(package-selected-packages
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement