Improve UX by eliminating nagging

This commit is contained in:
coolneng 2020-09-22 03:00:41 +02:00
parent 038d8d0215
commit 0a2980db32
Signed by: coolneng
GPG Key ID: 9893DA236405AF57
1 changed files with 3 additions and 3 deletions

6
+ui.el
View File

@ -1,7 +1,7 @@
;;; ~/.doom.d/+ui.el -*- lexical-binding: t; -*-
;; Appearance settings
;; Set Font and theme
(setq doom-font (font-spec :family "Iosevka Medium" :size 24)
(setq doom-font (font-spec :family "Iosevka Fixed Medium" :size 24)
doom-theme 'doom-nord)
;; Display Magit status in fullscreen
(after! magit
@ -17,12 +17,12 @@
;; Hide direnv environment variables popup
(setq direnv-always-show-summary nil)
;; Disable LSP documentation popup
(after! lsp
(after! lsp-ui
(setq lsp-ui-doc-enable nil
lsp-signature-auto-activate nil))
;; Shrink minibuffer
(after! ivy
(setq ivy-height 10))
(setq ivy-height 12))
;; Eliminate gaps between windows
(after! frame
(remove-hook 'doom-init-ui-hook #'window-divider-mode))