summary refs log tree commit diff
path: root/emacs.d/custom/fcuny-shell.el
blob: 5d41f92e426e2093b723c22d2524eaf94d54de06 (plain) (blame)
1
2
3
4
5
6
7
8
(use-package sh-script
  :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)