Update themes to dark and enable some minor speed hacks for long lines
This commit is contained in:
parent
d4c930262d
commit
d2dd38386b
4 changed files with 13 additions and 2 deletions
|
|
@ -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)
|
||||||
|
|
|
||||||
|
|
@ -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)
|
||||||
|
|
|
||||||
5
snippets/elixir-mode/screenshot
Normal file
5
snippets/elixir-mode/screenshot
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
# -*- mode: snippet -*-
|
||||||
|
# name: sshot
|
||||||
|
# key: sshot
|
||||||
|
# --
|
||||||
|
Hound.Helpers.Screenshot.take_screenshot()
|
||||||
|
|
@ -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)))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue