mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
Ruby, PHP, JavaScript and others have closing statements for code blocks. Highlightighting the current indentation level serves as more of annoyance than a useful tool. The same it not true for the likes of Python or CoffeeScript for example.
10 lines
331 B
EmacsLisp
10 lines
331 B
EmacsLisp
(add-hook 'css-mode-hook
|
|
(lambda ()
|
|
(flyspell-prog-mode)
|
|
(linum-mode t)
|
|
(fci-mode)
|
|
(setq css-indent-offset 2)
|
|
(setq highlight-indentation-offset 2)
|
|
(highlight-indentation-mode)
|
|
(define-key css-mode-map (kbd "RET") 'newline-and-indent)))
|