Re-indent and comment

This commit is contained in:
MitchMarq42 2022-11-27 14:50:21 -09:00
parent e27802dd81
commit e4941a972a

View File

@ -473,8 +473,7 @@ targets."
"https://git.mitchmarq42.xyz/mitch/vimcolors" "https://git.mitchmarq42.xyz/mitch/vimcolors"
:files (:defaults "mitch-theme.el")) :files (:defaults "mitch-theme.el"))
:config (mitch/visual-setup) :config (mitch/visual-setup)
:init :init (load-theme 'mitch t))
(load-theme 'mitch t))
(use-package yascroll (use-package yascroll
:diminish :diminish
@ -534,7 +533,7 @@ targets."
:config :config
(add-hook 'after-save-hook (add-hook 'after-save-hook
#'(lambda () (if (equal major-mode 'org-mode) #'(lambda () (if (equal major-mode 'org-mode)
(org-babel-tangle)))) (org-babel-tangle))))
(defvar org-electric-pairs '((?_ . ?_) (defvar org-electric-pairs '((?_ . ?_)
(?/ . ?/) (?/ . ?/)
(?* . ?*) (?* . ?*)
@ -647,7 +646,7 @@ Return nil if DIR is not in a hugo project at all."
:defer 1) :defer 1)
;; c sharp; taken from https://www.reddit.com/r/emacs/comments/k8tnzg/help_setting_up_c_lsp_omnisharproslyn/ ;; c sharp; taken from https://www.reddit.com/r/emacs/comments/k8tnzg/help_setting_up_c_lsp_omnisharproslyn/
;; '(there is nothing here because I'm not using c sharp...) ;; (there is nothing here because I'm not using c sharp...)
(use-package lsp-mode (use-package lsp-mode
:hook ((powershell-mode . lsp-mode) :hook ((powershell-mode . lsp-mode)
@ -687,7 +686,7 @@ Return nil if DIR is not in a hugo project at all."
:diminish :diminish
:hook (prog-mode . flymake-mode)) :hook (prog-mode . flymake-mode))
;; Emacs startup profiling ;; Emacs startup profiling -- may not work with chemacs2
(use-package esup (use-package esup
:commands esup) :commands esup)
@ -904,6 +903,7 @@ Return nil if DIR is not in a hugo project at all."
:custom (youtube-sub-extractor-timestamps 'left-margin) :custom (youtube-sub-extractor-timestamps 'left-margin)
:commands youtube-sub-extractor-extract-subs) :commands youtube-sub-extractor-extract-subs)
;; Cheat sheet
(use-package cheat-sh (use-package cheat-sh
:straight (:type git :host github :repo "davep/cheat-sh.el") :straight (:type git :host github :repo "davep/cheat-sh.el")
:commands cheat-sh) :commands cheat-sh)