+ui.el 469 B

12345678910111213141516
  1. ;;; -*- lexical-binding: t; -*-
  2. (setq doom-theme 'doom-one)
  3. ;; Fonts
  4. (setq doom-font (font-spec :family "Go Mono" :size 12))
  5. (setq doom-big-font (font-spec :family "Go Mono" :size 17))
  6. (set-frame-parameter nil 'internal-border-width 15)
  7. ;; setup transparency ... this might get annoying
  8. (set-frame-parameter (selected-frame) 'alpha '(100 . 100))
  9. (add-to-list 'default-frame-alist '(alpha . (100 . 100)))
  10. ;; Dash highlighting
  11. (after! dash (dash-enable-font-lock))