Emacs: Diminish some more modes.

This commit is contained in:
tastytea 2020-02-11 17:59:12 +01:00
parent c3337ba4be
commit 650cb68c96
3 changed files with 6 additions and 3 deletions

View File

@ -1,6 +1,6 @@
;;; global-variables.el --- Set global variables. -*- lexical-binding: t; -*- ;;; global-variables.el --- Set global variables. -*- lexical-binding: t; -*-
;; Time-stamp: <2020-01-26T19:32:07+0100> ;; Time-stamp: <2020-02-11T17:57:34+0100>
;;; Commentary: ;;; Commentary:
;; * Set `slow-computer'. ;; * Set `slow-computer'.
@ -21,6 +21,7 @@
(use-package emacs (use-package emacs
:ensure nil :ensure nil
:diminish abbrev-mode
:init :init
;; Banish customizations to another file. ;; Banish customizations to another file.

View File

@ -1,6 +1,6 @@
;;; c++.el --- C++ settings. -*- lexical-binding: t; -*- ;;; c++.el --- C++ settings. -*- lexical-binding: t; -*-
;; Time-stamp: <2020-01-27T06:10:15+0100> ;; Time-stamp: <2020-02-11T17:54:11+0100>
;;; Commentary: ;;; Commentary:
@ -117,6 +117,7 @@
;; Extra highlighting. ;; Extra highlighting.
(use-package modern-cpp-font-lock (use-package modern-cpp-font-lock
:diminish modern-c++-font-lock-mode
:hook :hook
(c++-mode . modern-c++-font-lock-mode) (c++-mode . modern-c++-font-lock-mode)
) )

View File

@ -1,6 +1,6 @@
;;; lsp.el --- Language Server Protocol. -*- lexical-binding: t; -*- ;;; lsp.el --- Language Server Protocol. -*- lexical-binding: t; -*-
;; Time-stamp: <2020-01-27T02:10:04+0100> ;; Time-stamp: <2020-02-11T17:58:36+0100>
;;; Commentary: ;;; Commentary:
@ -14,6 +14,7 @@
:if (executable-find "clangd") :if (executable-find "clangd")
:after (whitespace) :after (whitespace)
:defines (lsp-clients-clangd-args) :defines (lsp-clients-clangd-args)
:diminish lsp-mode
:custom :custom
(lsp-prefer-flymake nil) ; Disable flymake. (lsp-prefer-flymake nil) ; Disable flymake.