Add vue mode

This commit is contained in:
Maciej 2018-04-27 09:06:59 +03:00
parent 2cfe41626a
commit 07be5c9ab3
Signed by: maciej
GPG key ID: 41D62D42D3B0D765
5 changed files with 17 additions and 4 deletions

View file

@ -3,7 +3,7 @@
;;; Code: ;;; Code:
;;;;;;;;;;;;;;;;;;;;;;;; Overall behaviour ;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;; Overall behaviour ;;;;;;;;;;;;;;;;;;;;;;;;;;;
(setq debug-on-error t) ;; (setq debug-on-error t)
;;; remove menu bar and icons ;;; remove menu bar and icons
(menu-bar-mode -1) (menu-bar-mode -1)
@ -26,6 +26,9 @@
(global-linum-mode t) (global-linum-mode t)
(column-number-mode 1) (column-number-mode 1)
;; Enable TODO highlights
(hl-todo-mode 1)
;; Turn off sounds ;; Turn off sounds
(setq ring-bell-function 'ignore) (setq ring-bell-function 'ignore)

View file

@ -17,7 +17,7 @@
'(hl-paren-colors (quote ("#ecf0f1" "#ecf0f1" "#c0392b"))) '(hl-paren-colors (quote ("#ecf0f1" "#ecf0f1" "#c0392b")))
'(package-selected-packages '(package-selected-packages
(quote (quote
(minitest apache-mode flymake-go go-flymake flycheck-go company-go go-mode expand-region sql-indent json-mode terraform-mode flycheck-rust company-ghc company-ghci scion hlinum etags-select nvm tide yaml-mode window-purpose web-mode ujelly-theme toml-mode smart-mode-line scala-mode rvm ruby-end rspec-mode robe rainbow-mode rainbow-delimiters racer pyenv-mode noctilux-theme monokai-theme markdown-mode less-css-mode json-reformat jade-mode indent-guide helm-themes helm-projectile helm-ag haskell-mode haml-mode groovy-mode flymake-ruby flymake-cursor flycheck flatui-theme exec-path-from-shell evil-nerd-commenter evil-magit evil-leader elpy dumb-jump dockerfile-mode diff-hl dash-at-point company-tern company-racer company-jedi column-enforce-mode color-theme-approximate base16-theme atom-one-dark-theme alchemist aggressive-indent ag))) (vue-mode flymake-go go-flymake flycheck-go company-go go-mode expand-region sql-indent json-mode terraform-mode flycheck-rust company-ghc company-ghci scion hlinum etags-select nvm tide yaml-mode window-purpose web-mode ujelly-theme toml-mode smart-mode-line scala-mode rvm ruby-end rspec-mode robe rainbow-mode rainbow-delimiters racer pyenv-mode noctilux-theme monokai-theme markdown-mode less-css-mode json-reformat jade-mode indent-guide helm-themes helm-projectile helm-ag haskell-mode haml-mode groovy-mode flymake-ruby flymake-cursor flycheck flatui-theme exec-path-from-shell evil-nerd-commenter evil-magit evil-leader elpy dumb-jump dockerfile-mode diff-hl dash-at-point company-tern company-racer company-jedi column-enforce-mode color-theme-approximate base16-theme atom-one-dark-theme alchemist aggressive-indent ag)))
'(safe-local-variable-values (quote ((encoding . utf-8)))) '(safe-local-variable-values (quote ((encoding . utf-8))))
'(sml/active-background-color "#34495e") '(sml/active-background-color "#34495e")
'(sml/active-foreground-color "#ecf0f1") '(sml/active-foreground-color "#ecf0f1")

View file

@ -93,6 +93,9 @@
(unless (package-installed-p 'flycheck) (unless (package-installed-p 'flycheck)
(package-install 'flycheck)) (package-install 'flycheck))
(unless (package-installed-p 'hl-todo)
(package-install 'hl-todo))
(unless (package-installed-p 'flymake) (unless (package-installed-p 'flymake)
(package-install 'flymake)) (package-install 'flymake))
@ -259,4 +262,8 @@
(unless (package-installed-p 'nvm) (unless (package-installed-p 'nvm)
(package-install 'nvm)) (package-install 'nvm))
(unless (package-installed-p 'vue-mode)
(package-install 'vue-mode))
;;; packages.el ends here ;;; packages.el ends here

View file

@ -21,6 +21,7 @@
(load-theme 'base16-summerfruit-light t t) (load-theme 'base16-summerfruit-light t t)
(load-theme 'base16-material-darker t t) (load-theme 'base16-material-darker t t)
(load-theme 'atom-one-dark t t) (load-theme 'atom-one-dark t t)
(load-theme 'base16-atelier-forest-light t t)
(defun base16-harmonic-custom () (defun base16-harmonic-custom ()
"Additional configuration for Base 16 theme." "Additional configuration for Base 16 theme."
@ -49,8 +50,8 @@
(require 'helm-themes) (require 'helm-themes)
(if (display-graphic-p) (if (display-graphic-p)
(progn (progn
(enable-theme 'base16-material-darker) (enable-theme 'base16-atelier-forest-light)
(base16-material-darker-custom)) (base16-summerfruit-light-custom))
(progn (progn
(color-theme-approximate-on) (color-theme-approximate-on)
(enable-theme 'flatui))) (enable-theme 'flatui)))

View file

@ -11,6 +11,8 @@
;; Test ;; Test
(add-to-list 'purpose-user-regexp-purposes (add-to-list 'purpose-user-regexp-purposes
'("_spec\\.rb\\(<.*>\\)?$" . test)) ;; Rspec '("_spec\\.rb\\(<.*>\\)?$" . test)) ;; Rspec
(add-to-list 'purpose-user-regexp-purposes
'("_test\\.rb\\(<.*>\\)?$" . test)) ;; Minitest
(add-to-list 'purpose-user-regexp-purposes (add-to-list 'purpose-user-regexp-purposes
'("_test\\.exs\\(<.*>\\)?$" . test)) ;; ExUnit '("_test\\.exs\\(<.*>\\)?$" . test)) ;; ExUnit
(add-to-list 'purpose-user-regexp-purposes (add-to-list 'purpose-user-regexp-purposes