diff options
| author | tslil clingman <> | 2020-01-12 11:46:40 -0500 |
|---|---|---|
| committer | tslil clingman <> | 2020-01-12 11:46:40 -0500 |
| commit | 800b2b1a51c77a328042f47d24e2517266029544 (patch) | |
| tree | 03e0724f7425af1e892a1ac6551fd762feb1a7db /emacs/inits/70-global-keybinds.el | |
| parent | a86d9385f37b8705fe9e9cf98361a129e2bfe0b3 (diff) | |
Changes from using bison
Diffstat (limited to 'emacs/inits/70-global-keybinds.el')
| -rw-r--r-- | emacs/inits/70-global-keybinds.el | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/emacs/inits/70-global-keybinds.el b/emacs/inits/70-global-keybinds.el index 92ae2fe..d19ff0d 100644 --- a/emacs/inits/70-global-keybinds.el +++ b/emacs/inits/70-global-keybinds.el @@ -1,4 +1,4 @@ -;; Time-stamp: <2019-08-25 21:44:55 (tslil@basingstoke)> +;; Time-stamp: <2020-01-12 11:40:27 (tslil@bison)> (setq time-stamp-active t time-stamp-line-limit 3 @@ -24,7 +24,13 @@ (global-set-key (kbd "<f11>") 'notmuch) (global-set-key (kbd "C-x m") 'eshell) -(global-set-key (kbd "C-c c") 'shell) + +(use-package eterm-256color + :ensure t + :config + (add-hook 'term-mode-hook #'eterm-256color-mode) + (global-set-key (kbd "C-c c") 'ansi-term)) + (global-set-key (kbd "C-x e") 'eval-expression) (global-set-key (kbd "M-i") 'indent-region) |
