mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
14 lines
364 B
EmacsLisp
14 lines
364 B
EmacsLisp
(defun customizations-for-css-mode ()
|
|
(interactive)
|
|
(flyspell-prog-mode)
|
|
(linum-mode t)
|
|
(fci-mode)
|
|
(auto-complete-mode)
|
|
(subword-mode)
|
|
(setq css-indent-offset 2)
|
|
(setq highlight-indentation-offset 2)
|
|
(highlight-indentation-mode)
|
|
(define-key css-mode-map (kbd "RET") 'newline-and-indent))
|
|
|
|
(add-hook 'css-mode-hook 'customizations-for-css-mode)
|