about summary refs log tree commit diff
path: root/configs/shared/emacs/.emacs.d/wpc/packages/wpc-terminal.el
blob: aa76fde6a16baaf2ad5c6572fb59446e3ccb7d8d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
;;; terminal.el --- My cobbled together terminal -*- lexical-binding: t -*-
;; Author: William Carroll <wpcarro@gmail.com>

;;; Commentary:
;; My attempts at creating a sane Emacs terminal
;;
;; This module previously contained more logic, which has since been stripped.
;;
;; If the variable `explicit-shell-file-name' is `nil', Emacs will use the value
;; for the $SHELL environment variable.  When running on NixOS, since binaries
;; like `zsh' won't be available at `/bin/zsh' or other common places, we need
;; to ensure that `explicit-shell-file-name' remain `nil'.
;;
;; Wish List:
;; - prevent Emacs from asking: "Run program: /run/current-system/sw/bin/zsh"

;;; Code:

(setq wpc/terminal-name "wpc/terminal")

(provide 'wpc-terminal)
;;; wpc-terminal.el ends here