added customizations for css-mode

This commit is contained in:
2012-02-24 20:48:02 +00:00
parent 9fb4dcd38a
commit cb97028e82
2 changed files with 7 additions and 0 deletions

View File

@@ -1,5 +1,6 @@
(load-file (config-path "languages/coffee-script.el"))
(load-file (config-path "languages/cucumber.el"))
(load-file (config-path "languages/css.el"))
(load-file (config-path "languages/elisp.el"))
(load-file (config-path "languages/erlang.el"))
(load-file (config-path "languages/javascript.el"))

6
languages/css.el Normal file
View File

@@ -0,0 +1,6 @@
(add-hook 'css-mode-hook
(lambda ()
(flyspell-prog-mode)
(linum-mode t)
(fci-mode)
(setq css-indent-offset 2)))