Compare commits

..

No commits in common. "598be986403efc2b9c1d85030e3aa9b9ec2b5d2f" and "b16996ea51fe03e22abb360906062f0aafa38cc8" have entirely different histories.

3 changed files with 9 additions and 6 deletions

13
init.el
View File

@ -305,10 +305,9 @@
proced-enable-color-flag t)) proced-enable-color-flag t))
(use-package project (use-package project
:init (setopt project-list-file (expand-file-name "projects" emacs-d-userdata) :init (setq project-list-file (expand-file-name "projects" emacs-d-userdata)
project-switch-commands 'project-dired project-switch-commands 'project-dired
project-vc-merge-submodules nil project-vc-merge-submodules nil)
project-mode-line t)
:config (progn :config (progn
;; Sort known projects before persisting, to reduce committer noise ;; Sort known projects before persisting, to reduce committer noise
@ -2140,6 +2139,12 @@ Note that this workaround is incomplete, as explained in this comment."
solarized-use-variable-pitch nil solarized-use-variable-pitch nil
solarized-high-contrast-mode-line nil)) solarized-high-contrast-mode-line nil))
(use-package smart-mode-line
:ensure t
:init (setq sml/mode-width 'full
sml/name-width 30)
:commands (sml/setup))
(use-package moody (use-package moody
:ensure t :ensure t
:commands (moody-replace-mode-line-buffer-identification :commands (moody-replace-mode-line-buffer-identification

View File

@ -18,7 +18,6 @@ Known to work well with the `solarized-dark theme.")
'(org-column ((t (:strike-through nil :underline nil :slant normal :weight normal)))) '(org-column ((t (:strike-through nil :underline nil :slant normal :weight normal))))
'(org-headline-done ((t (:foreground "#859900")))) '(org-headline-done ((t (:foreground "#859900"))))
'(org-link ((t (:inherit link :weight normal)))) '(org-link ((t (:inherit link :weight normal))))
'(org-mode-line-clock ((t (:inherit default))))
'(outline-4 ((t (:inherit org-level-4)))) '(outline-4 ((t (:inherit org-level-4))))
'(flyspell-duplicate ((t (:underline (:color "orange red" :style wave))))) '(flyspell-duplicate ((t (:underline (:color "orange red" :style wave)))))
'(flyspell-incorrect ((t (:underline (:color "orange red" :style wave))))) '(flyspell-incorrect ((t (:underline (:color "orange red" :style wave)))))

View File

@ -18,7 +18,6 @@
'(org-column ((t (:strike-through nil :underline nil :slant normal :weight normal :height 110 :family "DejaVu Sans Mono")))) '(org-column ((t (:strike-through nil :underline nil :slant normal :weight normal :height 110 :family "DejaVu Sans Mono"))))
'(org-headline-done ((t (:foreground "#859900")))) '(org-headline-done ((t (:foreground "#859900"))))
'(org-link ((t (:inherit link :weight normal)))) '(org-link ((t (:inherit link :weight normal))))
'(org-mode-line-clock ((t (:inherit default))))
'(outline-4 ((t (:inherit org-level-4)))) '(outline-4 ((t (:inherit org-level-4))))
'(flyspell-duplicate ((t (:underline (:color "orange red" :style wave))))) '(flyspell-duplicate ((t (:underline (:color "orange red" :style wave)))))
'(flyspell-incorrect ((t (:underline (:color "orange red" :style wave))))) '(flyspell-incorrect ((t (:underline (:color "orange red" :style wave)))))