From 650cb68c963663403d55d92c367b309f762b5ea3 Mon Sep 17 00:00:00 2001 From: tastytea Date: Tue, 11 Feb 2020 17:59:12 +0100 Subject: [PATCH] Emacs: Diminish some more modes. --- init.d/basics/global-variables.el | 3 ++- init.d/programming/c++.el | 3 ++- init.d/programming/lsp.el | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/init.d/basics/global-variables.el b/init.d/basics/global-variables.el index b6d34ae..81e4b89 100644 --- a/init.d/basics/global-variables.el +++ b/init.d/basics/global-variables.el @@ -1,6 +1,6 @@ ;;; 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: ;; * Set `slow-computer'. @@ -21,6 +21,7 @@ (use-package emacs :ensure nil + :diminish abbrev-mode :init ;; Banish customizations to another file. diff --git a/init.d/programming/c++.el b/init.d/programming/c++.el index ab24bc2..066bda4 100644 --- a/init.d/programming/c++.el +++ b/init.d/programming/c++.el @@ -1,6 +1,6 @@ ;;; c++.el --- C++ settings. -*- lexical-binding: t; -*- -;; Time-stamp: <2020-01-27T06:10:15+0100> +;; Time-stamp: <2020-02-11T17:54:11+0100> ;;; Commentary: @@ -117,6 +117,7 @@ ;; Extra highlighting. (use-package modern-cpp-font-lock + :diminish modern-c++-font-lock-mode :hook (c++-mode . modern-c++-font-lock-mode) ) diff --git a/init.d/programming/lsp.el b/init.d/programming/lsp.el index 71dccf5..93ef008 100644 --- a/init.d/programming/lsp.el +++ b/init.d/programming/lsp.el @@ -1,6 +1,6 @@ ;;; 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: @@ -14,6 +14,7 @@ :if (executable-find "clangd") :after (whitespace) :defines (lsp-clients-clangd-args) + :diminish lsp-mode :custom (lsp-prefer-flymake nil) ; Disable flymake.