diff options
author | Franck Cuny <fcuny@twitter.com> | 2018-10-18 14:33:35 -0700 |
---|---|---|
committer | Franck Cuny <fcuny@twitter.com> | 2018-10-18 14:33:35 -0700 |
commit | b5fc26b2c1c779284adad2f9bf7daba3751003cc (patch) | |
tree | e5df2f82dc076637a990a8800f65caa02d504dac /configs/rcs/emacs.d | |
parent | [emacs] Customize appearance. (diff) | |
download | emacs.d-b5fc26b2c1c779284adad2f9bf7daba3751003cc.tar.gz |
[emacs] Simplify UI
Don't need anything fancy.
Diffstat (limited to '')
-rw-r--r-- | configs/rcs/emacs.d/init.el | 23 |
1 files changed, 2 insertions, 21 deletions
diff --git a/configs/rcs/emacs.d/init.el b/configs/rcs/emacs.d/init.el index b16080e..e508d89 100644 --- a/configs/rcs/emacs.d/init.el +++ b/configs/rcs/emacs.d/init.el @@ -103,29 +103,10 @@ :config (progn (defun fc/setup-frame(&optional frame) - (fringe-mode '(10 . 10)) - (set-face-attribute 'fringe nil - :foreground (face-foreground 'default) - :background (face-background 'default)) - (set-face-attribute 'mode-line nil :overline "#203e6f" :box nil) - (set-face-foreground 'mode-line "#203e6f") - (set-face-background 'mode-line "#b2cefb") - - (set-face-attribute 'mode-line-inactive nil :overline "#94bbf9" :box nil) - (set-face-foreground 'mode-line-inactive "#94bbf9") - (set-face-background 'mode-line-inactive "#d8e6fd") - - (setq-default frame-title-format "%b (%f)") - + (fringe-mode '(5 . 5)) + (setq-default frame-title-format "%b") (set-face-attribute 'default nil :height 150 :weight 'normal :width 'normal :font "Source Code Pro") - - (custom-set-faces - '(hl-line - ((((background dark)) :background "#484c5c") (t (:background "#DEEDFF"))))) - (when (eq system-type 'darwin) - (add-to-list 'default-frame-alist '(ns-transparent-titlebar . t)) - (add-to-list 'default-frame-alist '(ns-appearance . 'nil)) (setq ns-use-native-fullscreen nil) (setq mac-allow-anti-aliasing t))) (fc/setup-frame))) |