dotfiles/emacs/.emacs.d/config/init-ui.el

23 lines
526 B
EmacsLisp
Raw Normal View History

2021-02-21 02:59:11 +00:00
;; -*- lexical-binding: t; -*-
2021-02-20 16:52:15 +00:00
;; Don't show ugly graphical UI elements
(when (window-system)
(tool-bar-mode -1)
(scroll-bar-mode -1)
(tooltip-mode -1))
;; Doom themes are the best themes!
(use-package doom-themes)
(use-package doom-modeline
:config
(doom-modeline-mode 1))
;; Load custom themes
(add-to-list 'custom-theme-load-path (expand-file-name "config/themes" user-emacs-directory))
2021-02-20 23:24:00 +00:00
;; A small package to hide the mode line
(use-package hide-mode-line
:commands hide-mode-line-mode)
(provide 'init-ui)