layers: Fix missing owner for some layers

This is a partial fix for #3493. I didn't touch layers where I can't
tell what the intention was for how it should work.
This commit is contained in:
justbur 2015-11-20 13:25:53 -05:00 committed by Eivind Fonn
parent aa068a212a
commit 8ed77160bb
3 changed files with 10 additions and 10 deletions

View File

@ -8,6 +8,8 @@
(defun nim/post-init-company ()
(spacemacs|add-company-hook nim-mode))
(defun nim/init-company-nim ())
(defun nim/post-init-flycheck ()
(spacemacs/add-flycheck-hook 'nim-mode))

View File

@ -1,7 +1,7 @@
(setq racket-packages
'(
company
company-quickhelp-mode
company-quickhelp
racket-mode
))

View File

@ -10,15 +10,13 @@
;;
;;; License: GPLv3
(defvar semantic-packages
'(
;; package semantic go here
semantic
srefactor
stickyfunc-enhance
)
"List of all packages to install and/or initialize. Built-in packages
which require an initialization must be listed explicitly in the list.")
(setq semantic-packages
'(
;; package semantic go here
semantic
;; srefactor
stickyfunc-enhance
))
(unless (version< emacs-version "24.4")
(add-to-list 'semantic-packages 'srefactor))