summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2023-09-13 20:45:32 +0100
committerMatthew Lemon <y@yulqen.org>2023-09-13 20:45:32 +0100
commit05ed057f26be7248fdd032b51e42aad9135032c8 (patch)
tree4744515e6bbff9ad89f5e85ecaa3af3bcb57ee63
parentedfa5d2d1e45e618607dffc2bb862fd21076e9e3 (diff)
Further tweaks - to a default theme and fixed an errant paren
-rw-r--r--init.el28
1 files changed, 15 insertions, 13 deletions
diff --git a/init.el b/init.el
index 976309b..8dc8b23 100644
--- a/init.el
+++ b/init.el
@@ -1,4 +1,4 @@
-;;; init.el --- emacs configuration. -*- lexical-binding: t -*-
+.el --- emacs configuration. -*- lexical-binding: t -*-
;;; package --- MR Lemon emacs config
;;; Commentary:
;;; basic config
@@ -41,7 +41,9 @@
(format-time-string "%z")))))
;; theme
-;;(load-theme 'light-blue)
+(load-theme 'deeper-blue t)
+;; (set-background-color "black")
+;; (set-foreground-color "white")
;; packages
(require 'package)
@@ -251,10 +253,10 @@ Restart works only on graphic display."
(("<f9>" . distraction-free)))
;; theme
-(use-package gruber-darker-theme
- :ensure t
- :config
- (load-theme 'gruber-darker t))
+;; (use-package gruber-darker-theme
+;; :ensure t
+;; :config
+;; (load-theme 'gruber-darker t))
(use-package vterm
:ensure t)
@@ -563,14 +565,14 @@ Restart works only on graphic display."
;; (setq consult-preview-key (list (kbd "<S-down>") (kbd "<S-up>")))
;; For some commands and buffer sources it is useful to configure the
;; :preview-key on a per-command basis using the `consult-customize' macro.
- (consult-customize
- consult-theme :preview-key '(:debounce 0.2 any)
- consult-ripgrep consult-git-grep consult-grep
- consult-bookmark consult-recent-file consult-xref
- consult--source-bookmark consult--source-file-register
- consult--source-recent-file consult--source-project-recent-file
+ ;; (consult-customize
+ ;; consult-theme :preview-key '(:debounce 0.2 any)
+ ;; consult-ripgrep consult-git-grep consult-grep
+ ;; consult-bookmark consult-recent-file consult-xref
+ ;; consult--source-bookmark consult--source-file-register
+ ;; consult--source-recent-file consult--source-project-recent-file
;; :preview-key (kbd "M-.")
- :preview-key '(:debounce 0.4 any))
+ :preview-key '(:debounce 0.4 any)
;; Optionally configure the narrowing key.
;; Both < and C-+ work reasonably well.