summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYann Herklotz <git@yannherklotz.com>2023-01-28 21:17:11 +0000
committerYann Herklotz <git@yannherklotz.com>2023-01-28 21:17:11 +0000
commit156362bc9331f743e93d543fbb726e3bf464a95b (patch)
tree5c45b31a3e19675692922515a98817b992fc63c5
parent7eb145292588ff7a2d65e0da0b4ff189d43cc97c (diff)
downloadymh-emacs-156362bc9331f743e93d543fbb726e3bf464a95b.tar.gz
ymh-emacs-156362bc9331f743e93d543fbb726e3bf464a95b.zip
Change dictionary and add key binding to toggle tab bar
-rw-r--r--init.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/init.el b/init.el
index c68aafd..5823ea5 100644
--- a/init.el
+++ b/init.el
@@ -206,7 +206,7 @@ https://yannherklotz.com"))
(use-package ispell
:init
- (setq ispell-dictionary "british"))
+ (setq ispell-dictionary "en_GB"))
(use-package delight
:ensure t
@@ -227,6 +227,7 @@ https://yannherklotz.com"))
(define-key project-prefix-map "m" #'magit-project-status))
(use-package tab-bar
+ :bind (("C-x t D" . toggle-frame-tab-bar))
:init
(setq tab-bar-show nil)
(setq tab-bar-select-tab-modifiers '(meta))