This commit is contained in:
Tobias Ostner 2023-03-21 19:17:22 +01:00
parent 49ab62e0ae
commit cd6a599609
5 changed files with 12 additions and 1 deletions

View file

@ -7,7 +7,7 @@
(customize-set-variable 'visible-bell 1)
(customize-set-variable 'large-file-warning-threshold 100000000)
(add-to-list 'load-path (expand-file-name "modules/" user-emacs-directory))
(add-to-list 'load-path (expand-file-name "utils/" user-emacs-directory))
(setq custom-file (expand-file-name "custom.el" user-emacs-directory))
(load custom-file 'noerror)
@ -58,6 +58,12 @@
("C-:" . avy-goto-char)
("M-g f" . avy-goto-line)))
(use-package c3po
:load-path "packages/c3po"
:config
(require 'to-secrets)
(setq c3po-api-key to/chat-gpt-api-key))
(use-package cider
:defer t)

@ -0,0 +1 @@
Subproject commit 57599420615acc6e5bf0ebef7f30ae6540f6f6bc

View file