diff options
| author | Baitinq <[email protected]> | 2024-03-19 00:06:39 +0100 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2024-03-19 00:06:39 +0100 |
| commit | c5a4e002635b433bcca586b014e987268d54c290 (patch) | |
| tree | d35f088f2787f8489ff0dfee5a22e55d30ff3ac1 | |
| parent | Dotfiles: Nvim: Install copilot (diff) | |
| download | nixos-config-c5a4e002635b433bcca586b014e987268d54c290.tar.gz nixos-config-c5a4e002635b433bcca586b014e987268d54c290.tar.bz2 nixos-config-c5a4e002635b433bcca586b014e987268d54c290.zip | |
Dofiles: Emacs: Add eat terminal
| -rw-r--r-- | dotfiles/.emacs | 7 | ||||
| -rw-r--r-- | hosts/home.nix | 3 |
2 files changed, 8 insertions, 2 deletions
diff --git a/dotfiles/.emacs b/dotfiles/.emacs index 3681dc3..388096c 100644 --- a/dotfiles/.emacs +++ b/dotfiles/.emacs @@ -263,10 +263,15 @@ (:map evil-normal-state-map ("C-S-t" . centaur-tabs-mode))) +(use-package eat + :ensure t + :init + (setq eat-term-name "xterm-256color")) + (use-package shell-pop :ensure t :init - (setq shell-pop-shell-type '("terminal" "*terminal*" (lambda nil (term shell-pop-term-shell)))) + (setq shell-pop-shell-type '("terminal" "*terminal*" (lambda nil (eat shell-pop-term-shell)))) (setq shell-pop-term-shell "zsh") (my/leader-keys "t" '(shell-pop :wk "toggle terminal"))) diff --git a/hosts/home.nix b/hosts/home.nix index 0204918..a242397 100644 --- a/hosts/home.nix +++ b/hosts/home.nix @@ -188,7 +188,8 @@ minimap centaur-tabs - shell-pop + shell-pop + eat ]; extraConfig = builtins.readFile "${dotfiles}/.emacs"; }; |