;;; config.el --- shell configuration File for Spacemacs ;; ;; Copyright (c) 2012-2014 Sylvain Benner ;; Copyright (c) 2014-2015 Sylvain Benner & Contributors ;; ;; Author: Sylvain Benner ;; URL: https://github.com/syl20bnr/spacemacs ;; ;; This file is not part of GNU Emacs. ;; ;;; License: GPLv3 ;; Variables (defvar shell-default-shell (if (eq window-system 'w32) 'eshell 'ansi-term) "Default shell to use in Spacemacs. Possible values are `eshell', `shell', `term' and `ansi-term'.") (defvar shell-default-position 'bottom "Position of the shell. Possible values are `top', `bottom' and `full'.") (defvar shell-default-height 30 "Height in percents for the shell window.") (defvar shell-default-term-shell "/bin/bash" "Default shell to use in `term' and `ansi-term' shells.")