diff options
-rw-r--r-- | shoshin-config.el | 18 | ||||
-rw-r--r-- | shoshin-config.org | 8 |
2 files changed, 22 insertions, 4 deletions
diff --git a/shoshin-config.el b/shoshin-config.el index d69a20a..923bb96 100644 --- a/shoshin-config.el +++ b/shoshin-config.el @@ -37,7 +37,7 @@ corfu-quit-no-match t) (global-corfu-mode t) -(package-install 'corfu-popup) +(package-install 'corfu-terminal) (unless (display-graphic-p) (corfu-terminal-mode +1)) @@ -96,3 +96,19 @@ (mapc #'package-install my-chosen-themes) (package-install 'windresize) +(custom-set-variables + ;; custom-set-variables was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + '(package-selected-packages + '(magit windresize dracula-theme cyberpunk-theme darkroom srht plz devdocs json-mode markdown-mode which-key vertico marginalia embark corfu-terminal xah-fly-keys corfu consult)) + '(safe-local-variable-values + '((org-publish-project-alist quote + ("wiki" :base-directory "~/projects/wiki" :publishing-directory "~/projects/wiki/html" :base-extension "org"))))) +(custom-set-faces + ;; custom-set-faces was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + ) diff --git a/shoshin-config.org b/shoshin-config.org index 30154c3..72c22d2 100644 --- a/shoshin-config.org +++ b/shoshin-config.org @@ -230,10 +230,10 @@ the new. it seems like consult does this as well as switching themes (global-corfu-mode t) #+end_src -*** corfu-popon enables in terminal interface +*** corfu-terminal enables in terminal interface #+begin_src emacs-lisp - (package-install 'corfu-popup) + (package-install 'corfu-terminal) (unless (display-graphic-p) (corfu-terminal-mode +1)) #+end_src @@ -302,6 +302,8 @@ config might get what i want with vanilla built ins. (package-install 'json-mode) #+end_src +*** Ruby + ** Dev Docs #+begin_src emacs-lisp (package-install 'devdocs) @@ -358,7 +360,7 @@ an API token is stored in my ~.authinfo~ file. #+begin_src emacs-lisp (when (display-graphic-p) - (scroll-bar-mode nil) + (scroll-bar-mode -1) (fringe-mode '(8 . 0))) (tab-bar-mode t) |