Play around with some UI stuff (mainly modus themes)

This commit is contained in:
David Morgan 2021-08-06 16:04:09 +01:00
parent 20e27e477f
commit 16764da885
4 changed files with 20 additions and 14 deletions

View File

@ -38,6 +38,7 @@
cider-repl-history-file "~/.emacs.d/cider-history"
clojure-toplevel-inside-comment-form t)
(key-chord-define-global "??" 'cider-xref-fn-refs-select)
(key-chord-define-global "qq" 'cider-xref-fn-refs))
(key-chord-define-global "qq" 'cider-xref-fn-refs)
:hook (cider-repl-mode . (lambda () (display-line-numbers-mode -1))))
(provide 'init-clojure)

View File

@ -6,7 +6,7 @@
dashboard-set-footer nil
dashboard-week-agenda t
dashboard-projects-backend 'projectile
;dashboard-projects-switch-function 'projectile-persp-switch-project
dashboard-projects-switch-function 'projectile-persp-switch-project
dashboard-items '((recents . 15)
(bookmarks . 5)
(projects . 5)

View File

@ -17,19 +17,20 @@
:config
(key-chord-define-global "UU" 'my/magit-set-upstream)
(key-chord-define-global "RR" 'my/magit-refresh-state)
:custom-face
(diff-added ((t (:foreground "green4"))))
(magit-diff-added ((t (:foreground "green4"))))
(magit-diff-added-highlight ((t (:foreground "green4"))))
(diff-removed ((t (:foreground "red3"))))
(magit-diff-removed ((t (:foreground "red3"))))
(magit-diff-removed-highlight ((t (:foreground "red3"))))
;; :custom-face
;; (diff-added ((t (:foreground "green4"))))
;; (magit-diff-added ((t (:foreground "green4"))))
;; (magit-diff-added-highlight ((t (:foreground "green4"))))
;; (diff-removed ((t (:foreground "red3"))))
;; (magit-diff-removed ((t (:foreground "red3"))))
;; (magit-diff-removed-highlight ((t (:foreground "red3"))))
:custom
(magit-diff-refine-hunk 'all)
(magit-diff-paint-whitespace t)
(magit-diff-paint-whitespace-lines 'all)
(magit-diff-highlight-trailing t)
(magit-diff-highlight-indentation t))
;; (magit-diff-paint-whitespace t)
;; (magit-diff-paint-whitespace-lines 'all)
;; (magit-diff-highlight-trailing t)
;; (magit-diff-highlight-indentation t)
)
(prelude-require-package 'forge)
(use-package forge

View File

@ -5,7 +5,11 @@
(scroll-bar-mode -1)
(prelude-require-package 'solarized-theme)
(load-theme 'solarized-dark t)
;(load-theme 'solarized-dark t)
(prelude-require-package 'modus-themes)
(setq modus-themes-syntax '(alt-syntax green-strings yellow-comments)
modus-themes-paren-match '(bold intense underline))
(load-theme 'modus-vivendi t)
(setq whitespace-line-column 120)