;; General userinterface and appearance (tool-bar-mode -1) ; No toolbar (menu-bar-mode -1) ; No Menubar (set-scroll-bar-mode 'right) ; Scrollbar on the right (scroll-bar-mode -1) ; No scrollbar (global-font-lock-mode t) ; Color enabled (global-prettify-symbols-mode t) ; Prettify symbols (global-hl-line-mode 1) ; Highlight cursor line (global-whitespace-mode 1) ; Show whitespace globally (show-paren-mode 1) ; Visual matching parens (column-number-mode 1) ; Display column number in the mode line (size-indication-mode -1) ; Display buffer size in the mode line (add-to-list 'default-frame-alist '(fullscreen . maximized)) ; Maximize Window (add-to-list 'default-frame-alist '(font . "Iosevka Term-14")) (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) (provide 'display) ;; Local Variables: ;; mode: emacs-lisp ;; coding: utf-8 ;; fill-column: 79 ;; lisp-indent-offset: 2 ;; End: