31 lines
895 B
EmacsLisp
31 lines
895 B
EmacsLisp
(setq-default echo-keystrokes 0.02
|
|
column-number-indicator-zero-based nil
|
|
prettify-symbols-unprettify-at-point 'right-edge
|
|
show-paren-delay 0
|
|
show-paren-style 'expression
|
|
whitespace-style '(tab-mark)
|
|
indicate-buffer-boundaries 'left)
|
|
|
|
(global-font-lock-mode)
|
|
(global-prettify-symbols-mode)
|
|
(global-hl-line-mode)
|
|
(global-whitespace-mode)
|
|
(size-indication-mode)
|
|
(column-number-mode)
|
|
(show-paren-mode)
|
|
|
|
(when (eq system-type 'windows-nt)
|
|
(add-to-list 'default-frame-alist '(undecorated . nil))
|
|
(add-to-list 'default-frame-alist '(font . "Iosevka Term Slab-12")))
|
|
|
|
(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:
|