appearance.el 936 B

123456789101112131415161718192021222324252627282930
  1. ;;;; This file contains settings regarding Emacs' appearance.
  2. ;; Disable startup screen
  3. (setq inhibit-startup-screen t)
  4. ;; Visual bell
  5. (setq ring-bell-function (lambda ()
  6. (invert-face 'mode-line)
  7. (run-with-timer 0.05 nil 'invert-face 'mode-line)))
  8. ;; Show matching parentheses
  9. (show-paren-mode t)
  10. ;; Cursor blinking off
  11. (blink-cursor-mode -1)
  12. ;; Highlight the current line
  13. (global-hl-line-mode)
  14. ;; Display line numbers, relative line numbers
  15. (global-display-line-numbers-mode t)
  16. (setq display-line-numbers-type 'relative)
  17. ;; Font
  18. (let* ((windows-system (or (eq system-type 'ms-dos) (eq system-type 'windows-nt) (eq system-type 'cygwin)))
  19. (posix-system (not windows-system)))
  20. (cond
  21. (posix-system (set-face-attribute 'default nil :family "Liberation Mono" :height 150))
  22. (windows-system (set-face-attribute 'default nil :family "Consolas" :height 150))))