customized shell-script-mode (sh-mode) with FCI and linum

This commit is contained in:
2012-02-04 17:56:06 +00:00
parent 67947d855b
commit 748fce6419
2 changed files with 5 additions and 0 deletions

View File

@@ -6,5 +6,6 @@
(load-file "~/.emacs.d/languages/markdown.el")
(load-file "~/.emacs.d/languages/php.el")
(load-file "~/.emacs.d/languages/python.el")
(load-file "~/.emacs.d/languages/shell-script.el")
(load-file "~/.emacs.d/languages/ruby.el")
(load-file "~/.emacs.d/languages/yaml.el")

View File

@@ -0,0 +1,4 @@
(add-hook 'sh-mode-hook
(lambda ()
(fci-mode)
(linum-mode t)))