From 3fb2732483ac8bbf95dd839a703c93d11f97fe8c Mon Sep 17 00:00:00 2001 From: Alexander Rosenberg Date: Tue, 30 Apr 2024 02:38:47 -0700 Subject: [PATCH] Some minor changes --- init.el | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/init.el b/init.el index 1b5d794..e83a03e 100644 --- a/init.el +++ b/init.el @@ -90,6 +90,10 @@ ;; Don't use a gtk file picker (setq use-file-dialog nil) + ;; Make yes-or-no-p less verbose (and not use windows) + (setq use-dialog-box nil + use-short-answers t) + ;; Disable startup screen (setq inhibit-startup-screen t server-client-instructions nil) @@ -503,6 +507,8 @@ to `posframe-show' if the display is graphical." :hook (emacs-lisp-mode . flycheck-mode) :bind (:map flycheck-mode-map ("C-c e" . my/flycheck-show-diagnostic-at-point)) + :custom + (flycheck-indication-mode 'left-margin) :init (setq flycheck-display-errors-function nil) (defun my/flycheck-show-diagnostic-at-point ()