Files
emacs/settings/shell-settings.el
2021-01-27 21:50:40 +01:00

19 lines
451 B
EmacsLisp

;;; shell-settings.el --- Summary -*- lexical-binding: t -*-
;;; Commentary:
;;; Code:
(use-package sh-script
:defer t
:config
(setq sh-basic-offset 2))
(use-package powershell ;; https://melpa.org/#/powershell
:commands powershell-mode)
(use-package eshell-mode
:defer t
:init
(setq eshell-directory-name (concat user-cache-directory "eshell/")))
(provide 'shell-settings)
;;; shell-settings.el ends here