Update display

This commit is contained in:
Marcus Kammer 2019-12-08 10:09:47 +01:00
parent 1be5e9e070
commit 8c2ce431f1
2 changed files with 11 additions and 5 deletions

View file

@ -84,7 +84,7 @@
'(package-selected-packages '(package-selected-packages
(quote (quote
(flymake-eslint json-mode elpy darkroom dockerfile-mode ein spacemacs-theme flucui-themes leuven-theme htmlize scss-mode berrys-theme web-mode python-docstring sphinx-doc sphinx-frontend sphinx-mode ox-nikola racket-mode slime gherkin-mode powershell typescript-mode ob-http ob-ipython ob-restclient nord-theme restclient request restclient-test yaml-mode magit))) (flymake-eslint json-mode elpy darkroom dockerfile-mode ein spacemacs-theme flucui-themes leuven-theme htmlize scss-mode berrys-theme web-mode python-docstring sphinx-doc sphinx-frontend sphinx-mode ox-nikola racket-mode slime gherkin-mode powershell typescript-mode ob-http ob-ipython ob-restclient nord-theme restclient request restclient-test yaml-mode magit)))
'(python-shell-interpreter "python3") '(python-shell-interpreter "python3" t)
'(register-preview-delay 2) '(register-preview-delay 2)
'(register-separator 43) '(register-separator 43)
'(request-log-level (quote debug)) '(request-log-level (quote debug))

View file

@ -1,6 +1,4 @@
(setq-default *small-font* "Iosevka Term-11" (setq-default echo-keystrokes 0.02
*big-font* "Iosevka Term-14"
echo-keystrokes 0.02
column-number-indicator-zero-based nil column-number-indicator-zero-based nil
prettify-symbols-unprettify-at-point 'right-edge prettify-symbols-unprettify-at-point 'right-edge
show-paren-delay 0 show-paren-delay 0
@ -19,10 +17,18 @@
(when (eq system-type 'windows-nt) (when (eq system-type 'windows-nt)
(when (display-graphic-p) (when (display-graphic-p)
(add-to-list 'default-frame-alist '(undecorated . nil)) (add-to-list 'default-frame-alist '(undecorated . nil))
(add-to-list 'default-frame-alist '(font . "Iosevka Term-12")))) (add-to-list 'default-frame-alist '(font . "Iosevka Term-12"))
(when (string= (system-name) "XPS-8930")
(add-to-list 'default-frame-alist '(font . "Iosevka Term-10")))))
(when (eq system-type 'gnu/linux) (when (eq system-type 'gnu/linux)
(when (display-graphic-p) (when (display-graphic-p)
(add-to-list 'default-frame-alist '(font . "Iosevka Term Slab-14")))) (add-to-list 'default-frame-alist '(font . "Iosevka Term Slab-14"))))
(provide 'display) (provide 'display)
;; Local Variables:
;; coding: utf-8
;; fill-column: 79
;; lisp-indent-offset: 2
;; End: