diff options
| -rw-r--r-- | emacs/init.el | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/emacs/init.el b/emacs/init.el index 9d0c98e..b9f7ee0 100644 --- a/emacs/init.el +++ b/emacs/init.el @@ -394,6 +394,12 @@ then it takes a second \\[keyboard-quit] to abort the minibuffer." (use-package rainbow-delimiters :ensure t) +;; Disable all mouse interactions +(use-package disable-mouse + :ensure t + :config + (global-disable-mouse-mode)) + ;; I heard you could have Twitter in Emacs, so let's roll with it. (use-package twittering-mode :ensure t @@ -521,6 +527,21 @@ then it takes a second \\[keyboard-quit] to abort the minibuffer." (use-package slim-mode :ensure t) +; YAML +(use-package yaml-mode + :ensure t + :config + + (add-hook 'yaml-mode-hook 'warnings-mode-hook)) + +; SASS/SCSS +(use-package scss-mode + :ensure t + :config + + (setq scss-compile-at-save nil) + (add-hook 'yaml-mode-hook 'warnings-mode-hook)) + ; Apply purple function identifiers to all these languages. (dolist (lang-hook '(ruby-mode-hook php-mode-hook |
