Guest User

Untitled

a guest
Jan 21st, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. (custom-set-faces
  2. ;; custom-set-faces was added by Custom.
  3. ;; If you edit it by hand, you could mess it up, so be careful.
  4. ;; Your init file should contain only one such instance.
  5. ;; If there is more than one, they won't work right.
  6. '(default ((t (:stipple nil :background "white" :foreground "black" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 130 :width normal :family "Inconsolata")))))
  7.  
  8. M-x customize-face RET default RET
  9.  
  10. xrdb -merge ~/.Xresources
  11.  
  12. xrdb ~/.Xresources
  13.  
  14. ! UI elements
  15. Emacs.menuBar: 0
  16. Emacs.toolBar: 0
  17. Emacs.verticalScrollBars: off
  18. ! Font settings
  19. Emacs.FontBackend: xft,x
  20. Emacs.font: Inconsolata LGC:size=16
  21.  
  22. (push '(font . "Inconsolata") default-frame-alist)
  23.  
  24. (add-to-list 'default-frame-alist '(font . "Inconsolata"))
  25.  
  26. ;; Set default font
  27. (set-face-attribute 'default nil
  28. :family "Source Code Pro"
  29. :height 110
  30. :weight 'normal
  31. :width 'normal)
  32.  
  33. (add-to-list 'default-frame-alist
  34. '(font . "DejaVu Sans Mono-10"))
Add Comment
Please, Sign In to add comment