This commit is contained in:
Timothy Warren 2018-07-05 15:30:54 -04:00
parent cef7aa4cd5
commit db768ffa93
3 changed files with 21 additions and 1 deletions

View File

@ -12,5 +12,23 @@
(load-file "~/.spacemacs.d/spacemacs-user-init.el")
(load-file "~/.spacemacs.d/spacemacs-user-config.el")
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(ecb-auto-activate t)
'(ecb-auto-expand-tag-tree (quote all))
'(ecb-auto-update-methods-after-save t)
'(ecb-major-modes-show-or-hide (quote ((typescript php web mardown))))
'(ecb-methods-nodes-collapse-spec nil)
'(ecb-non-semantic-methods-initial-expand nil)
'(ecb-options-version "2.50")
'(ecb-show-only-positioned-tags t)
'(ecb-tag-visit-post-actions
(quote
((default ecb-tag-visit-smart-tag-start ecb-tag-visit-highlight-tag-header ecb-tag-visit-recenter ecb-tag-visit-smart-tag-start)
(php-mode ecb-tag-visit-goto-doc-start))))
'(ecb-tip-of-the-day nil)
'(ecb-tree-navigation-by-arrow nil))

View File

@ -76,9 +76,11 @@ values."
;; configuration in `dotspacemacs/user-config'.
dotspacemacs-additional-packages '(
all-the-icons
ecb
editorconfig
json-mode
rjsx-mode
semantic
)
;; A list of packages that cannot be updated.
dotspacemacs-frozen-packages '()

View File