legible Faces!
This commit is contained in:
parent
9be090216f
commit
81de15a6fd
1 changed files with 15 additions and 3 deletions
|
@ -27,6 +27,11 @@
|
||||||
;; Your init file should contain only one such instance.
|
;; Your init file should contain only one such instance.
|
||||||
;; If there is more than one, they won't work right.
|
;; If there is more than one, they won't work right.
|
||||||
'(async-bytecomp-package-mode t)
|
'(async-bytecomp-package-mode t)
|
||||||
|
'(display-line-numbers 'visual)
|
||||||
|
'(display-line-numbers-current-absolute t)
|
||||||
|
'(display-line-numbers-grow-only t)
|
||||||
|
'(display-line-numbers-type 'visual)
|
||||||
|
'(display-line-numbers-width-start t)
|
||||||
'(package-archives
|
'(package-archives
|
||||||
'(("gnu" . "https://elpa.gnu.org/packages/")
|
'(("gnu" . "https://elpa.gnu.org/packages/")
|
||||||
("melpa" . "https://melpa.org/packages/")
|
("melpa" . "https://melpa.org/packages/")
|
||||||
|
@ -48,7 +53,15 @@
|
||||||
'(evil-goggles-undo-redo-add-face ((t (:inherit diff-added))))
|
'(evil-goggles-undo-redo-add-face ((t (:inherit diff-added))))
|
||||||
'(evil-goggles-undo-redo-change-face ((t (:inherit diff-changed))))
|
'(evil-goggles-undo-redo-change-face ((t (:inherit diff-changed))))
|
||||||
'(evil-goggles-undo-redo-remove-face ((t (:inherit diff-removed))))
|
'(evil-goggles-undo-redo-remove-face ((t (:inherit diff-removed))))
|
||||||
'(evil-goggles-yank-face ((t (:inherit diff-changed)))))
|
'(evil-goggles-yank-face ((t (:inherit diff-changed))))
|
||||||
|
'(line-number ((t (:background "blue" :foreground "black"))))
|
||||||
|
'(magit-blame-heading ((t (:extend t :background "brightgreen" :foreground "black"))))
|
||||||
|
'(magit-diff-context-highlight ((t (:extend t :background "brightgreen" :foreground "black"))))
|
||||||
|
'(magit-diff-file-heading-selection ((t (:inherit magit-diff-file-heading-highlight :extend t :foreground "red"))))
|
||||||
|
'(magit-diff-hunk-heading ((t (:extend t :background "brightgreen" :foreground "black"))))
|
||||||
|
'(magit-diff-hunk-heading-highlight ((t (:extend t :background "brightgreen" :foreground "black"))))
|
||||||
|
'(magit-diff-hunk-heading-selection ((t (:inherit magit-diff-hunk-heading-highlight :extend t :foreground "brightred"))))
|
||||||
|
'(magit-header-line ((t (:background "brightyellow" :foreground "black" :weight bold)))))
|
||||||
|
|
||||||
;; auto-package-update
|
;; auto-package-update
|
||||||
(use-package auto-package-update
|
(use-package auto-package-update
|
||||||
|
@ -136,8 +149,7 @@
|
||||||
(use-package magit
|
(use-package magit
|
||||||
:config
|
:config
|
||||||
(evil-define-key 'normal 'global (kbd "<leader>g") 'magit-file-dispatch)
|
(evil-define-key 'normal 'global (kbd "<leader>g") 'magit-file-dispatch)
|
||||||
(evil-define-key 'normal 'global (kbd "<leader>r") 'magit-status)
|
(evil-define-key 'normal 'global (kbd "<leader>r") 'magit-status))
|
||||||
)
|
|
||||||
|
|
||||||
;; Lispy
|
;; Lispy
|
||||||
(use-package lispy
|
(use-package lispy
|
||||||
|
|
Loading…
Add table
Reference in a new issue