;;; test-code.el --- test code -*- lexical-binding: t; -*- ;; author: Craig Jennings ;;; Commentary: ;; This is where you should put config code you want to test. ;; I recommend calling this file from the end of your init.el ;; if something breaks, you have most of your Emacs config loaded. ;;; Code: (use-package org-noter ;; :ensure nil ;; custom code ;; :load-path "custom/org-noter.el" :after (:any org pdf-view) :commands org-noter :bind ("" . org-noter) :config (setq org-noter-doc-split-fraction '(0.75 . 0.75)) (setq org-noter-notes-search-path '("~/sync/org/org-noter/")) (setq org-noter-default-notes-file-names '("notes.org")) (setq org-noter-separate-notes-from-heading t) (org-noter-enable-org-roam-integration)) ;; ------------------------------------ Pomm ----------------------------------- (use-package pomm :defer .5 :bind ("M-p" . pomm) :commands (pomm pomm-third-time)) ;; ----------------------------------- Mpdel ----------------------------------- ;; (use-package mpdel ;; :defer .5 ;; :config ;; (setq mpdel-prefix-key (kbd "M-p")) ;; (mpdel-mode)) ;; --------------------------------- Easy Hugo --------------------------------- (use-package easy-hugo :defer .5 :init (setq easy-hugo-basedir "~/code/cjennings-net/") (setq easy-hugo-url "https://cjennings.net") (setq easy-hugo-sshdomain "cjennings.net") (setq easy-hugo-root "/var/www/cjennings/") (setq easy-hugo-previewtime "300") (setq easy-hugo-postdir "content") (setq easy-hugo-server-flags "-D --noHTTPCache --disableFastRender") (setq easy-hugo-default-ext ".md") :bind ("C-c H" . easy-hugo) :config (easy-hugo-enable-menu)) ;; -------------------------------- Google This -------------------------------- (use-package google-this :load-path "~/code/emacs-google-this/" :defer 1 :bind ("C-h g" . 'google-this-search) :config (google-this-mode 1) (setq google-this-browse-url-function 'eww-browse-url)) ;; ------------------------------ ERC Yank To Gist ----------------------------- ;; automatically create a Gist if pasting more than 5 lines ;; this module requires https://github.com/defunkt/gist ;; via ruby: 'gem install gist' via the aur: yay -S gist (use-package erc-yank :defer 1 :after erc :bind (:map erc-mode-map ("C-y" . erc-yank))) ;; --------------------------------- Ob-Racket --------------------------------- ;; (use-package ob-racket ;; :load-path "~/code/ob-racket" ;; :defer .5 ;; :after racket-mode ;; :commands (org-babel-execute:racket) ;; :quelpa (ob-racket ;; :fetcher github ;; :repo "hasu/emacs-ob-racket" ;; :files ("*.el" "*.rkt"))) (provide 'test-code) ;;; test-code.el ends here.