Added Emmet Mode
Emmet Mode is a minor mode providing support for Zen Coding by producing HTML from CSS-like selectors → https://github.com/smihica/emmet-mode
This commit is contained in:
parent
4fcd261601
commit
64efd16ffe
@ -12,7 +12,7 @@
|
|||||||
'(ecb-options-version "2.50")
|
'(ecb-options-version "2.50")
|
||||||
'(package-selected-packages
|
'(package-selected-packages
|
||||||
(quote
|
(quote
|
||||||
(ecb undo-tree pip-requirements jedi highlight-indent-guides yaml-mode whitespace-cleanup-mode sublime-themes sml-modeline smarty-mode smart-mode-line-powerline-theme scss-mode sass-mode rainbow-mode prettier-js pkgbuild-mode pcre2el nlinum markdown-mode less-css-mode flycheck editorconfig anzu ac-php))))
|
(emmet-mode ecb undo-tree pip-requirements jedi highlight-indent-guides yaml-mode whitespace-cleanup-mode sublime-themes sml-modeline smarty-mode smart-mode-line-powerline-theme scss-mode sass-mode rainbow-mode prettier-js pkgbuild-mode pcre2el nlinum markdown-mode less-css-mode flycheck editorconfig anzu ac-php))))
|
||||||
(custom-set-faces
|
(custom-set-faces
|
||||||
;; custom-set-faces was added by Custom.
|
;; custom-set-faces was added by Custom.
|
||||||
;; If you edit it by hand, you could mess it up, so be careful.
|
;; If you edit it by hand, you could mess it up, so be careful.
|
||||||
|
1
init.el
1
init.el
@ -40,6 +40,7 @@
|
|||||||
;; Tools
|
;; Tools
|
||||||
(require 'init-flycheck)
|
(require 'init-flycheck)
|
||||||
(require 'init-whitespace)
|
(require 'init-whitespace)
|
||||||
|
(require 'init-emmet-mode)
|
||||||
;;(require 'init-editorconfig)
|
;;(require 'init-editorconfig)
|
||||||
;; Languages
|
;; Languages
|
||||||
(require 'init-ccc)
|
(require 'init-ccc)
|
||||||
|
6
lisp/init-emmet-mode.el
Normal file
6
lisp/init-emmet-mode.el
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
;; emmet-mode
|
||||||
|
(require-package 'emmet-mode)
|
||||||
|
(add-hook 'sgml-mode-hook 'emmet-mode) ;; Auto-start on any markup modes
|
||||||
|
(add-hook 'css-mode-hook 'emmet-mode) ;; enable Emmet's css abbreviation.
|
||||||
|
|
||||||
|
(provide 'init-emmet-mode)
|
Loading…
x
Reference in New Issue
Block a user