Some minor changes
This commit is contained in:
parent
4b438dc787
commit
3fb2732483
6
init.el
6
init.el
@ -90,6 +90,10 @@
|
|||||||
;; Don't use a gtk file picker
|
;; Don't use a gtk file picker
|
||||||
(setq use-file-dialog nil)
|
(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
|
;; Disable startup screen
|
||||||
(setq inhibit-startup-screen t
|
(setq inhibit-startup-screen t
|
||||||
server-client-instructions nil)
|
server-client-instructions nil)
|
||||||
@ -503,6 +507,8 @@ to `posframe-show' if the display is graphical."
|
|||||||
:hook (emacs-lisp-mode . flycheck-mode)
|
:hook (emacs-lisp-mode . flycheck-mode)
|
||||||
:bind (:map flycheck-mode-map
|
:bind (:map flycheck-mode-map
|
||||||
("C-c e" . my/flycheck-show-diagnostic-at-point))
|
("C-c e" . my/flycheck-show-diagnostic-at-point))
|
||||||
|
:custom
|
||||||
|
(flycheck-indication-mode 'left-margin)
|
||||||
:init
|
:init
|
||||||
(setq flycheck-display-errors-function nil)
|
(setq flycheck-display-errors-function nil)
|
||||||
(defun my/flycheck-show-diagnostic-at-point ()
|
(defun my/flycheck-show-diagnostic-at-point ()
|
||||||
|
Loading…
Reference in New Issue
Block a user