Disable logging of LSP traffic.

This commit is contained in:
Tom Alexander
2023-09-08 11:55:56 -04:00
parent ed25cd6d31
commit 993e773414
3 changed files with 34 additions and 24 deletions

View File

@@ -85,15 +85,6 @@
backup-directory-alist `((".*" . ,(concat temp-dir "/backup/")))
auto-save-file-name-transforms `((".*" ,(concat temp-dir "/auto-save-list/") t)))
;; Disable toolbar & menubar
(menu-bar-mode -1)
(when (fboundp 'tool-bar-mode)
(tool-bar-mode -1))
(when ( fboundp 'scroll-bar-mode)
(scroll-bar-mode -1))
(context-menu-mode +1)
;; Delete trailing whitespace before save
(add-hook 'before-save-hook 'delete-trailing-whitespace)