This commit can be reversed later
This commit is contained in:
parent
f282c5e64c
commit
49a986a337
4 changed files with 35 additions and 9 deletions
2
init.el
2
init.el
|
|
@ -94,7 +94,7 @@
|
||||||
;; If there is more than one, they won't work right.
|
;; If there is more than one, they won't work right.
|
||||||
'(font-lock-constant-face ((((type graphic)) (:foreground "#dfaf8f")) (((min-colors 256)) (:foreground "brightred")) (t (:foreground "brightred"))))
|
'(font-lock-constant-face ((((type graphic)) (:foreground "#dfaf8f")) (((min-colors 256)) (:foreground "brightred")) (t (:foreground "brightred"))))
|
||||||
'(font-lock-type-face ((t (:foreground "#ffcb6b" :family "JetBrains Mono"))))
|
'(font-lock-type-face ((t (:foreground "#ffcb6b" :family "JetBrains Mono"))))
|
||||||
'(markdown-code-face ((t (:inherit fixed-pitch :family "JetBrains Mono"))))
|
'(markdown-code-face ((t (:inherit fixed-pitch :family "IBM Plex Mono"))))
|
||||||
'(mmm-default-submode-face ((t nil))))
|
'(mmm-default-submode-face ((t nil))))
|
||||||
|
|
||||||
;; Restore GC to normal, but still high
|
;; Restore GC to normal, but still high
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,7 @@
|
||||||
"
|
"
|
||||||
^ Elixir actions
|
^ Elixir actions
|
||||||
^^^^^^^^--------------------------------------------------------------------------------------------
|
^^^^^^^^--------------------------------------------------------------------------------------------
|
||||||
Buffer: _r_: Reload _f_: Format _i_: Indent
|
Buffer: _r_: Reload _f_: Format _i_: Indent _e_: Show Errors
|
||||||
Other: _m_: iMenu
|
Other: _m_: iMenu
|
||||||
^^
|
^^
|
||||||
"
|
"
|
||||||
|
|
@ -22,6 +22,7 @@ Other: _m_: iMenu
|
||||||
("r" revert-buffer-no-confirm)
|
("r" revert-buffer-no-confirm)
|
||||||
("i" mark-and-indent-whole-buffer)
|
("i" mark-and-indent-whole-buffer)
|
||||||
("f" elixir-format)
|
("f" elixir-format)
|
||||||
|
("e" flycheck-list-errors)
|
||||||
("m" lsp-ui-imenu))
|
("m" lsp-ui-imenu))
|
||||||
|
|
||||||
(defun activate-elixir-mode ()
|
(defun activate-elixir-mode ()
|
||||||
|
|
|
||||||
31
pkg/fonts.el
31
pkg/fonts.el
|
|
@ -12,18 +12,41 @@
|
||||||
|
|
||||||
;; Set font face
|
;; Set font face
|
||||||
;;;;;;;;;;;;;;;;;;;;;; Font configuration ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
;;;;;;;;;;;;;;;;;;;;;; Font configuration ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
(defun +custom-set-lsp-ui-font-hook ()
|
||||||
|
"Reset LSP IO font to specified +custom-font and +custom-font-size."
|
||||||
|
(setq lsp-ui-doc-frame-hook nil)
|
||||||
|
(add-hook 'lsp-ui-doc-frame-hook
|
||||||
|
(lambda (frame _w)
|
||||||
|
(set-face-attribute
|
||||||
|
'default frame :font
|
||||||
|
(format "%s %d" +custom-font (- +custom-font-size 2))))))
|
||||||
|
|
||||||
(defun set-font (name size)
|
(defun set-font (name size)
|
||||||
"Set font to NAME and its SIZE to X pixels."
|
"Set font to NAME and its SIZE to X pixels."
|
||||||
(interactive "sNew font: \nnEnter size for %s: ")
|
(interactive "sNew font: \nnEnter size for %s: ")
|
||||||
|
(defvar +custom-font name)
|
||||||
|
(defvar +custom-font-size size)
|
||||||
|
|
||||||
(set-face-attribute 'default nil :font (format "%s %d" name size))
|
(set-face-attribute 'default nil :font (format "%s %d" name size))
|
||||||
;; Set modeline font to be 1 pixel point smaller than the general font
|
|
||||||
|
;; Set comletion and modeline font to be 1 pixel point smaller than
|
||||||
|
;; the general font
|
||||||
|
;; (set-face-attribute 'markdown-code-face nil :font (format "%s %d" name (- size 1)))
|
||||||
|
(set-face-attribute 'tooltip nil :font (format "%s %d" name (- size 1)))
|
||||||
|
(set-face-attribute 'company-tooltip nil :font (format "%s %d" name (- size 1)))
|
||||||
|
(set-face-attribute 'company-tooltip-annotation nil :font (format "%s %d" name (- size 1)))
|
||||||
|
(set-face-attribute 'company-tooltip-mouse nil :font (format "%s %d" name (- size 1)))
|
||||||
(set-face-attribute 'mode-line nil :font (format "%s %d" name (- size 1)))
|
(set-face-attribute 'mode-line nil :font (format "%s %d" name (- size 1)))
|
||||||
(set-face-attribute 'mode-line-inactive nil :font
|
(set-face-attribute 'mode-line-inactive nil :font (format "%s %d" name (- size 1)))
|
||||||
(format "%s %d" name (- size 1))))
|
|
||||||
|
;; Call LSP-UI hook
|
||||||
|
(+custom-set-lsp-ui-font-hook))
|
||||||
|
|
||||||
;; (defconst +custom-font "Iosevka Term")
|
;; (defconst +custom-font "Iosevka Term")
|
||||||
;; (defconst +custom-font "JetBrains Mono")
|
;; (defconst +custom-font "JetBrains Mono")
|
||||||
(defconst +custom-font "IBM Plex Mono")
|
(defvar +custom-font "IBM Plex Mono")
|
||||||
|
(defvar +custom-font-size 14)
|
||||||
|
|
||||||
|
|
||||||
(defun set-font-to-screen ()
|
(defun set-font-to-screen ()
|
||||||
"Automatically set font size to suit the monitor."
|
"Automatically set font size to suit the monitor."
|
||||||
|
|
|
||||||
|
|
@ -14,17 +14,21 @@
|
||||||
(use-package flatui-theme :straight t :defer t)
|
(use-package flatui-theme :straight t :defer t)
|
||||||
(use-package planet-theme :straight t :defer t)
|
(use-package planet-theme :straight t :defer t)
|
||||||
(use-package apropospriate-theme :straight t :defer t)
|
(use-package apropospriate-theme :straight t :defer t)
|
||||||
|
(use-package material-theme :straight t :defer t)
|
||||||
|
|
||||||
;; Disable cursor blinking
|
;; Disable cursor blinking
|
||||||
(blink-cursor-mode 0)
|
(blink-cursor-mode 0)
|
||||||
|
|
||||||
;; Light themes
|
;; Light themes
|
||||||
|
(load-theme 'material-light t)
|
||||||
|
(load-theme 'base16-zenburn t)
|
||||||
(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 'apropospriate-light t t)
|
(load-theme 'apropospriate-light t t)
|
||||||
(load-theme 'base16-humanoid-light t t)
|
(load-theme 'base16-humanoid-light t t)
|
||||||
|
|
||||||
;; Dark themes
|
;; Dark themes
|
||||||
|
(load-theme 'material t)
|
||||||
(load-theme 'base16-solarflare t t)
|
(load-theme 'base16-solarflare t t)
|
||||||
(load-theme 'base16-snazzy t t)
|
(load-theme 'base16-snazzy t t)
|
||||||
(load-theme 'base16-gruvbox-dark-hard t t)
|
(load-theme 'base16-gruvbox-dark-hard t t)
|
||||||
|
|
@ -32,9 +36,7 @@
|
||||||
(if (display-graphic-p)
|
(if (display-graphic-p)
|
||||||
(progn
|
(progn
|
||||||
(sml/apply-theme 'respectful)
|
(sml/apply-theme 'respectful)
|
||||||
(enable-theme (nth
|
(enable-theme 'base16-harmonic-light))
|
||||||
(random 2)
|
|
||||||
'(base16-humanoid-light base16-harmonic-light))))
|
|
||||||
(progn
|
(progn
|
||||||
(defvar base16-theme-256-color-source "base16-shell")
|
(defvar base16-theme-256-color-source "base16-shell")
|
||||||
(enable-theme 'apropospriate-light)))
|
(enable-theme 'apropospriate-light)))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue