summary refs log tree commit diff
path: root/emacs.d/custom/fcuny-shell.el
blob: b5de9c0d749aa349ea4822f0e900ab5c896c5cbb (plain) (blame)
1
2
3
4
5
6
7
8
9
(use-package sh-script
  :after (flyspell flycheck)
  :mode ("bashrc" . sh-mode)
  :hook (after-save . executable-make-buffer-file-executable-if-script-p)
  :config
  (setq-default sh-indentation 2
                sh-basic-offset 2))

(provide 'fcuny-shell)