diff options
Diffstat (limited to '')
-rw-r--r-- | emacs.d/custom/fcuny-shell.el | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/emacs.d/custom/fcuny-shell.el b/emacs.d/custom/fcuny-shell.el new file mode 100644 index 0000000..5d41f92 --- /dev/null +++ b/emacs.d/custom/fcuny-shell.el @@ -0,0 +1,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) |