Files
.emacs.d/mode-customizations/sh-mode.el

13 lines
358 B
EmacsLisp

(defun customizations-for-sh-mode ()
(interactive)
(flyspell-prog-mode)
(linum-mode t)
(fci-mode)
(setq sh-basic-offset 2)
(setq sh-indentation 2)
(setq highlight-indentation-offset 2)
(highlight-indentation-mode)
(define-key sh-mode-map (kbd "RET") 'reindent-then-newline-and-indent))
(add-hook 'sh-mode-hook 'customizations-for-sh-mode)