diff options
author | Marc Coquand <marc@mccd.space> | 2024-11-04 18:31:39 +0200 |
---|---|---|
committer | Marc Coquand <marc@mccd.space> | 2024-11-04 18:31:39 +0200 |
commit | 9d2ba6b951aa0be63c423fbb1ffc5ee97b2118c5 (patch) | |
tree | 73a0b08c9c14fa321f543ed70020ade12eb5f1ce /home | |
parent | 1b2cae9dd963351433dd7a0c19ae52283cf2e7dc (diff) | |
download | guix-9d2ba6b951aa0be63c423fbb1ffc5ee97b2118c5.tar.gz guix-9d2ba6b951aa0be63c423fbb1ffc5ee97b2118c5.tar.bz2 guix-9d2ba6b951aa0be63c423fbb1ffc5ee97b2118c5.zip |
.
Diffstat (limited to 'home')
-rw-r--r-- | home/dots/.emacs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/home/dots/.emacs b/home/dots/.emacs index abc8abe..6b6248e 100644 --- a/home/dots/.emacs +++ b/home/dots/.emacs @@ -376,6 +376,9 @@ (repeat-mode 1)) (use-package eww + :config + (setq eww-auto-rename-buffer t + eww-buffer-name-length 20) :bind ((:map eww-mode-map ("+" . image-increase-size)))) @@ -675,6 +678,12 @@ (nix-mode . eglot-ensure) (go-mode . eglot-ensure)) +(use-package tab-line + :config + (setq tab-line-close-button nil) + :hook + (eww-mode . tab-line-mode)) + (use-package go-mode :ensure t :defer t @@ -1089,6 +1098,11 @@ '(org-time-grid ((t (:foreground "gray")))) '(org-quote ((t (:inherit org-block :slant italic)))) '(outline-4 ((t (:inherit outline-2)))) + '(tab-line ((t (:box (:line-width (4 . 4) :style flat-button) :weight semi-light :family "Iosevka Aile")))) + '(tab-line ((t (:box (:line-width (4 . 4) :style flat-button) :weight semi-light :family "Iosevka Aile")))) + '(tab-line-highlight ((t (:box (:line-width (4 . 4) :style flat-button) :weight semi-light :family "Iosevka Aile")))) + '(tab-line-tab-current ((t (:box (:line-width (4 . 4) :style flat-button) :weight semi-light :family "Iosevka Aile")))) + '(tab-line-tab-inactive ((t (:box (:line-width (4 . 4) :style flat-button) :weight semi-light :foreground "gray80" :family "Iosevka Aile")))) '(tab-bar ((t (:box (:line-width (12 . 24) :style flat-button) :weight semi-light :family "Iosevka Aile")))) '(tab-bar-tab ((t (:inherit tab-bar :foreground "#111111" :box (:line-width (20 . 1) :color "#fffff8"))))) '(tab-bar-tab-inactive ((t (:inherit tab-bar-tab :background "#fffff8" :foreground "#999999" :weight semi-light)))) |