diff options
author | 2020-04-25 13:20:21 -0400 | |
---|---|---|
committer | 2020-04-25 13:23:54 -0400 | |
commit | 8146824a5a0175e7e51e5cba82ef88cf105ef50d (patch) | |
tree | d9e85f32031ae6322f04795773cbe53ad3a5798e /lisp/smart-mode-line-bandali-theme.el | |
parent | 0a4ef723f624951b16271426d4eedafff15e6f15 (diff) | |
download | configs-8146824a5a0175e7e51e5cba82ef88cf105ef50d.tar.gz configs-8146824a5a0175e7e51e5cba82ef88cf105ef50d.tar.xz configs-8146824a5a0175e7e51e5cba82ef88cf105ef50d.zip |
Update refinery-theme to v0.1.1
* lisp/bandali-theme.el: (setq sml/theme 'respectful).
* lisp/smart-mode-line-bandali-theme.el,
* lisp/tangomod-theme.el: Delete.
Diffstat (limited to 'lisp/smart-mode-line-bandali-theme.el')
-rw-r--r-- | lisp/smart-mode-line-bandali-theme.el | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/lisp/smart-mode-line-bandali-theme.el b/lisp/smart-mode-line-bandali-theme.el deleted file mode 100644 index c3a2fb3..0000000 --- a/lisp/smart-mode-line-bandali-theme.el +++ /dev/null @@ -1,51 +0,0 @@ -;;; smart-mode-line-bandali-theme.el --- bandali's smart-mode-line theme -*- lexical-binding: t; -*- - -;; Copyright (C) 2019-2020 Amin Bandali - -;; Author: Amin Bandali <bandali@gnu.org> -;; Version: 0.1.0 -;; Package-Requires: ((emacs "24.3") (smart-mode-line "2.10")) -;; Keywords: faces - -;; This file is NOT part of GNU Emacs. - -;; This program is free software; you can redistribute it and/or modify -;; it under the terms of the GNU General Public License as published by -;; the Free Software Foundation, either version 3 of the License, or -;; (at your option) any later version. - -;; This program is distributed in the hope that it will be useful, -;; but WITHOUT ANY WARRANTY; without even the implied warranty of -;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -;; GNU General Public License for more details. - -;; You should have received a copy of the GNU General Public License -;; along with this program. If not, see <https://www.gnu.org/licenses/>. - -;;; Commentary: - -;; My custom theme for smart-mode-line. - -;;; Code: - -(deftheme smart-mode-line-bandali - "My custom theme for smart-mode-line.") - -(custom-theme-set-faces - 'smart-mode-line-bandali - '(mode-line-buffer-id ((t :inherit sml/filename :foreground nil :background nil))) - '(mode-line-inactive ((t :background "#e1e1e1"))) - '(mode-line ((t :background "#e7e7e7"))) - '(sml/global ((t :inherit font-lock-preprocessor-face))) - '(sml/filename ((t :inherit mode-line-buffer-id))) - '(sml/modes ((t :foreground nil :inherit sml/filename :weight normal))) - '(sml/prefix ((t :inherit (font-lock-variable-name-face sml/global)))) - '(sml/read-only ((t :inherit (font-lock-type-face sml/not-modified))))) - -;;;###autoload -(when load-file-name - (add-to-list 'custom-theme-load-path - (file-name-as-directory (file-name-directory load-file-name)))) - -(provide-theme 'smart-mode-line-bandali) -;;; smart-mode-line-bandali-theme.el ends here. |