Skip to content

Instantly share code, notes, and snippets.

@bryangarza
Created February 23, 2015 04:18
Show Gist options
  • Save bryangarza/1650b209d97c642e0876 to your computer and use it in GitHub Desktop.
Save bryangarza/1650b209d97c642e0876 to your computer and use it in GitHub Desktop.
(require 'web-mode)
(add-to-list 'auto-mode-alist '("\\.html?\\'" . web-mode))
(add-to-list 'auto-mode-alist '("\\.css\\'" . web-mode))
(add-to-list 'auto-mode-alist '("\\.scss\\'" . web-mode))
(defun custom-web-mode-hook ()
"Hooks for Web mode."
(setq web-mode-markup-indent-offset 2)
(setq web-mode-css-indent-offset 2)
(setq web-mode-code-indent-offset 2))
(add-hook 'web-mode-hook 'custom-web-mode-hook)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment