Update display
This commit is contained in:
parent
1be5e9e070
commit
8c2ce431f1
2 changed files with 11 additions and 5 deletions
|
@ -84,7 +84,7 @@
|
|||
'(package-selected-packages
|
||||
(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)))
|
||||
'(python-shell-interpreter "python3")
|
||||
'(python-shell-interpreter "python3" t)
|
||||
'(register-preview-delay 2)
|
||||
'(register-separator 43)
|
||||
'(request-log-level (quote debug))
|
||||
|
|
|
@ -1,6 +1,4 @@
|
|||
(setq-default *small-font* "Iosevka Term-11"
|
||||
*big-font* "Iosevka Term-14"
|
||||
echo-keystrokes 0.02
|
||||
(setq-default echo-keystrokes 0.02
|
||||
column-number-indicator-zero-based nil
|
||||
prettify-symbols-unprettify-at-point 'right-edge
|
||||
show-paren-delay 0
|
||||
|
@ -19,10 +17,18 @@
|
|||
(when (eq system-type 'windows-nt)
|
||||
(when (display-graphic-p)
|
||||
(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 (display-graphic-p)
|
||||
(add-to-list 'default-frame-alist '(font . "Iosevka Term Slab-14"))))
|
||||
|
||||
(provide 'display)
|
||||
|
||||
;; Local Variables:
|
||||
;; coding: utf-8
|
||||
;; fill-column: 79
|
||||
;; lisp-indent-offset: 2
|
||||
;; End:
|
||||
|
|
Loading…
Add table
Reference in a new issue