(use-package fringe :custom (left-fringe-width 10) (right-fringe-width 10)) (use-package scroll-bar :config (scroll-bar-mode -1)) (use-package tool-bar :config (tool-bar-mode -1)) (use-package frame :bind (("C-c C-m" . toggle-frame-fullscreen)) :config (blink-cursor-mode -1) (setq frame-title-format "%b") (set-face-attribute 'default nil :height 140 :weight 'normal :width 'normal :font "Source Code Pro") (when (memq window-system '(mac ns)) (setq ns-use-native-fullscreen nil) (setq mac-allow-anti-aliasing t))) (use-package hl-line :config (set-face-background 'hl-line "#E0EBF5") (global-hl-line-mode t)) (use-package uniquify :defer 5 :config (setq uniquify-ignore-buffers-re "^\\*") ; don't muck with special buffers (setq uniquify-buffer-name-style 'forward) (setq uniquify-separator "/")) (use-package hydra :ensure t) (use-package smart-mode-line :ensure t :config ;; See https://github.com/Malabarba/smart-mode-line/issues/217 (setq mode-line-format (delq 'mode-line-position mode-line-format)) (setq sml/no-confirm-load-theme t) (sml/setup) (sml/apply-theme 'light) (remove-hook 'display-time-hook 'sml/propertize-time-string)) (provide 'fcuny-ui)