Added vue-mode support

This commit is contained in:
Jesús
2019-08-10 17:08:09 -05:00
parent c28a596ee2
commit 6c6a955447
3 changed files with 20 additions and 1 deletions

18
modules/init-vue.el Normal file
View File

@@ -0,0 +1,18 @@
;;; init-vue.el --- .Emacs Configuration -*- lexical-binding: t -*-
;;; Commentary:
;;
;;; Code:
;; vue-mode
(use-package vue-mode
:pin "MELPA"
:mode ("\\.vue\\'" . vue-mode)
:config
(setq vue-mode-packages '(vue-mode))
(setq vue-mode-excluded-packages '())
;; 0, 1, or 2, representing (respectively) none, low, and high coloring
(setq mmm-submode-decoration-level 0)
)
(provide 'init-vue)
;;; init-vue.el ends here