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