Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
spacemacs: Add feature-mode
  • Loading branch information
The-Compiler committed Mar 30, 2016
1 parent 7231114 commit 7523e7b
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions spacemacs
Expand Up @@ -41,8 +41,8 @@ values."
;; wrapped in a layer. If you need some configuration for these
;; packages, then consider creating a layer. You can also put the
;; configuration in `dotspacemacs/user-config'.
dotspacemacs-additional-packages '()
;; A list of packages and/or extensions that will not be install and loaded.
dotspacemacs-additional-packages '(feature-mode)
;; A list of packages and/or exteesions that will not be install and loaded.
dotspacemacs-excluded-packages '()
;; If non-nil spacemacs will delete any orphan packages, i.e. packages that
;; are declared in a layer which is not a member of
Expand Down Expand Up @@ -257,6 +257,9 @@ you should place you code here."
(add-hook 'python-mode-hook (auto-fill-mode t))
(add-hook 'python-mode-hook (set-fill-column 79))
(add-hook 'python-mode-hook (spacemacs/toggle-fill-column-indicator-on))

;; Set up .feature mode
(add-to-list 'auto-mode-alist '("\.feature$" . feature-mode))
)

;; Do not write anything past this comment. This is where Emacs will
Expand Down

0 comments on commit 7523e7b

Please sign in to comment.