Update themes to dark and enable some minor speed hacks for long lines

This commit is contained in:
Maciej 2020-12-10 11:54:52 +02:00
parent d4c930262d
commit d2dd38386b
Signed by: maciej
GPG key ID: 41D62D42D3B0D765
4 changed files with 13 additions and 2 deletions

View file

@ -160,6 +160,10 @@
:defer t :defer t
:ensure t) :ensure t)
;;;;;;;;;;;;;;;;; Speed up long line display by disabling bidirectional text
(setq-default bidi-paragraph-direction 'left-to-right
bidi-inhibit-bpa t)
(which-key-mode t) (which-key-mode t)
(provide 'pkg/base) (provide 'pkg/base)

View file

@ -25,6 +25,7 @@
(setq lsp-ui-doc-enable t (setq lsp-ui-doc-enable t
lsp-ui-header t lsp-ui-header t
lsp-ui-delay 0.5 ;; Wait half a second to display documentation
lsp-ui-doc-position 'at-point lsp-ui-doc-position 'at-point
lsp-ui-doc-include-signature t lsp-ui-doc-include-signature t
lsp-log-io nil) lsp-log-io nil)

View file

@ -0,0 +1,5 @@
# -*- mode: snippet -*-
# name: sshot
# key: sshot
# --
Hound.Helpers.Screenshot.take_screenshot()

View file

@ -20,6 +20,7 @@
;; Light themes ;; Light themes
(load-theme 'base16-atelier-forest-light t t) (load-theme 'base16-atelier-forest-light t t)
(load-theme 'base16-harmonic-light t t) (load-theme 'base16-harmonic-light t t)
(load-theme 'base16-gruvbox-dark-hard t t)
;; Dark themes ;; Dark themes
(load-theme 'base16-solarflare t t) (load-theme 'base16-solarflare t t)
@ -29,8 +30,8 @@
(progn (progn
(sml/apply-theme 'respectful) (sml/apply-theme 'respectful)
(enable-theme (nth (enable-theme (nth
(random 2) (random 3)
'(base16-snazzy base16-solarflare)))) '(base16-snazzy base16-gruvbox-dark-hard base16-solarflare))))
(progn (progn
(defvar base16-theme-256-color-source "base16-shell") (defvar base16-theme-256-color-source "base16-shell")
(enable-theme 'base16-atelier-forest-light))) (enable-theme 'base16-atelier-forest-light)))