Paste in old README blurb; diminish some thingies

This commit is contained in:
MitchMarq42 2022-06-19 19:16:32 -08:00
parent 20192715e6
commit 7f05477fb6
2 changed files with 28 additions and 1 deletions

View File

@ -8,3 +8,29 @@ this whole time.
There's a lot of stuff here, but I've decided not to take the literate-config There's a lot of stuff here, but I've decided not to take the literate-config
approach just yet. This needs to mostly work on Windows, after all. approach just yet. This needs to mostly work on Windows, after all.
** From the old README:
I have based most of this off of what I happened to have for neovim at the time,
with the aid of [[https://systemcrafters.net][System Crafters]]. Since then it
has grown into something more, something crazy. Or maybe it's really not that
crazy and emacs is just a bad program with a good extension API. I do not know
if I am a human dreaming of emacs, or an emacs dreaming of humanity.
There are a few things to immediately note:
- The theme is my own. Every existing emacs (and vim, for that matter)
colorscheme/theme is washed-in and gray-on-gray. Doom, spacemacs, solarized,
nord, dracula, or any other name-able theme. Also, any "new and exciting"
theme you see on Reddit will be the same. This infuriated me to no end, so in
the early days of my nvim tweaking I pulled the most unique and contrastful
theme I could find. It was called "sv" and it was hacked up by some guy on
github once and then forgotten. So I extended it for nvim, then recreated it
in emacs with the aid of
[[https://github.com/jasonm23/autothemer][autothemer]] (which you can find at
[[.config/emacs/lisp/mitch-theme.el][.config/emacs/lisp/mitch-theme.el]]).
- Typing ~qq~ will change your input method. This is sort-of a built-in feature,
but the default trigger is to type ~C-\~, which is annoying to press. The ~qq~
behavior is built into Japanese-mode specifically and normally toggles in and
out of ~japanese-ascii~, which is literally just normal text except ~qq~
switches back to Japanese.

View File

@ -204,6 +204,7 @@
(use-package org (use-package org
:straight (:type built-in) :straight (:type built-in)
:mode (("\\.org$" . org-mode)) :mode (("\\.org$" . org-mode))
:diminish org-indent-mode
:custom :custom
(org-ellipsis "") (org-ellipsis "")
(org-hide-leading-stars t) (org-hide-leading-stars t)
@ -223,7 +224,7 @@
(add-to-list 'org-structure-template-alist '("ps1" . "src powershell"))) (add-to-list 'org-structure-template-alist '("ps1" . "src powershell")))
:hook (org-mode . turn-off-line-numbers)) :hook (org-mode . turn-off-line-numbers))
(use-package org-variable-pitch (use-package org-variable-pitch
:diminish :diminish (buffer-face-mode org-variable-pitch-minor-mode)
:config :config
(set-face-attribute 'org-meta-line nil :inherit '(font-lock-comment-delimiter-face fixed-pitch)) (set-face-attribute 'org-meta-line nil :inherit '(font-lock-comment-delimiter-face fixed-pitch))
:hook (org-mode . org-variable-pitch-minor-mode)) :hook (org-mode . org-variable-pitch-minor-mode))