From 4d432999c77aa2613c3bc6f118e708a21d120422 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sat, 7 Jun 2025 00:02:57 -0500 Subject: adding author statements to all el files --- modules/ai-config.el | 1 + modules/custom-functions.el | 1 + modules/dashboard-config.el | 1 + modules/diff-config.el | 1 + modules/dirvish-config.el | 7 +++++-- modules/epa-config.el | 1 + modules/flyspell-config.el | 1 + modules/font-config.el | 3 +++ modules/games-config.el | 1 + modules/host-environment.el | 1 + modules/ledger-config.el | 1 + modules/local-repository.el | 1 + modules/org-babel-config.el | 1 + modules/org-capture-config.el | 1 + modules/org-contacts-config.el | 2 +- modules/org-drill-config.el | 1 + modules/org-export-config.el | 2 +- modules/org-refile-config.el | 2 +- modules/org-roam-config.el | 2 +- modules/prog-comments.el | 2 +- modules/prog-training.el | 2 +- modules/prog-webdev.el | 2 +- modules/reconcile-open-repos.el | 2 +- modules/record-desktop.el | 2 +- modules/system-utils.el | 9 +++------ modules/telegram-config.el | 2 +- modules/test-code.el | 1 + modules/tramp-config.el | 1 + modules/treesitter-config.el | 1 + modules/ui-theme.el | 2 +- modules/user-constants.el | 2 +- modules/vc-config.el | 2 +- modules/weather-config.el | 2 +- 33 files changed, 41 insertions(+), 22 deletions(-) (limited to 'modules') diff --git a/modules/ai-config.el b/modules/ai-config.el index 374838472..df9435549 100644 --- a/modules/ai-config.el +++ b/modules/ai-config.el @@ -1,4 +1,5 @@ ;;; ai-config.el --- Configuration for AI Integrations -*- lexical-binding: t; -*- +;; author Craig Jennings ;;; Commentary: diff --git a/modules/custom-functions.el b/modules/custom-functions.el index 4f9c784b6..efc2d4e20 100644 --- a/modules/custom-functions.el +++ b/modules/custom-functions.el @@ -1,4 +1,5 @@ ;;; custom-functions.el --- My Custom Functions and Keymaps -*- lexical-binding: t; -*- +;; author Craig Jennings ;;; Commentary: ;; diff --git a/modules/dashboard-config.el b/modules/dashboard-config.el index c17503cf5..79656d874 100644 --- a/modules/dashboard-config.el +++ b/modules/dashboard-config.el @@ -1,4 +1,5 @@ ;;; dashboard-config.el --- Dashboard Configuration -*- lexical-binding: t; -*- +;; author Craig Jennings ;;; Commentary: diff --git a/modules/diff-config.el b/modules/diff-config.el index aaef8dbf8..98729639e 100644 --- a/modules/diff-config.el +++ b/modules/diff-config.el @@ -1,4 +1,5 @@ ;;; ediff-config.el --- diff Configuration -*- lexical-binding: t; -*- +;; author Craig Jennings ;;; Commentary: ;; highly useful setup for configuring ediff diff --git a/modules/dirvish-config.el b/modules/dirvish-config.el index e68eb72a7..96448d68e 100644 --- a/modules/dirvish-config.el +++ b/modules/dirvish-config.el @@ -1,4 +1,4 @@ -;;; dirvish-config.el --- Configuration for Tramp and the Dired File Manager -*- lexical-binding: t; -*- +;;; dirvish-config.el --- Configuration for the Dired and Dirvish File Managers -*- lexical-binding: t; -*- ;; author Craig Jennings ;;; Commentary: @@ -95,6 +95,7 @@ automatically displayed." (add-to-list 'load-path (concat user-emacs-directory "elpa/dirvish-2.3.0/extensions")) (require 'dirvish) (require 'dirvish-icons) + (require 'dirvish-emerge) (require 'dirvish-quick-access) (require 'dirvish-yank) (dirvish-override-dired-mode) @@ -116,7 +117,8 @@ automatically displayed." ("pw" ,(concat pix-dir "/wallpaper/") "pictures wallpaper") ("px" ,pix-dir "pictures directory") ("rcj" "/sshx:cjennings@cjennings.net:~" "remote cjennings.net") - ("s" ,sync-dir "sync directory") + ("sx" ,sync-dir "sync directory") + ("sv" "~/sync/videos/" "sync/videos directory") ("tg" ,(concat sync-dir "/text.games") "text games") ("vr" ,video-recordings-dir "video recordings directory") ("vx" ,videos-dir "videos") @@ -143,6 +145,7 @@ automatically displayed." (dired-file-name-at-point) " >>/dev/null 2>&1" )))) ("Z" . (lambda () (interactive) (cj/dired-open-with "zathura"))) ("L" . (lambda () (interactive) (cj/dired-open-with "libreoffice"))) + ("o" . (lambda () (interactive) (cj/dired-open-with "xdg-open"))) ("P" . (lambda () (interactive) (cj/dired-open-with "gimp"))) ("O" . (lambda () (interactive) (call-interactively 'cj/dired-open-with))) ("" . dired-up-directory) diff --git a/modules/epa-config.el b/modules/epa-config.el index 8d902ae48..1b7ae21ba 100644 --- a/modules/epa-config.el +++ b/modules/epa-config.el @@ -1,4 +1,5 @@ ;;; epa-config.el --- EasyPG Configuration -*- lexical-binding: t; -*- +;; author Craig Jennings ;;; Commentary: ;; diff --git a/modules/flyspell-config.el b/modules/flyspell-config.el index e97350d62..89fd25a18 100644 --- a/modules/flyspell-config.el +++ b/modules/flyspell-config.el @@ -1,4 +1,5 @@ ;;; flyspell-config.el --- Spell Check Configuration -*- lexical-binding: t; -*- +;; author Craig Jennings ;;; Commentary: diff --git a/modules/font-config.el b/modules/font-config.el index 3d56d63c8..7da2e8af4 100644 --- a/modules/font-config.el +++ b/modules/font-config.el @@ -31,6 +31,9 @@ (FiraCode-Literata :default-family "Fira Code Nerd Font" :variable-pitch-family "Literata") + (Merriweather + :default-family "Merriweather" + :variable-pitch-family "Merriweather") (24-point-font :default-height 240) (20-point-font diff --git a/modules/games-config.el b/modules/games-config.el index 030fce938..f7a3b652d 100644 --- a/modules/games-config.el +++ b/modules/games-config.el @@ -1,4 +1,5 @@ ;;; games-config.el --- emacs games -*- lexical-binding: t; -*- +;; author Craig Jennings ;;; Commentary: ;; The games menu is the easiest entry. "Shift-Alt-G" will get you there. Enjoy! diff --git a/modules/host-environment.el b/modules/host-environment.el index 20986b1a9..012794b57 100644 --- a/modules/host-environment.el +++ b/modules/host-environment.el @@ -1,4 +1,5 @@ ;;; host-environment.el --- Host Environment Convenience Functions -*- lexical-binding: t; -*- +;; author Craig Jennings ;;; Commentary: ;; Convenience functions to report about the host environment diff --git a/modules/ledger-config.el b/modules/ledger-config.el index 21f7fb816..e2969dd7c 100644 --- a/modules/ledger-config.el +++ b/modules/ledger-config.el @@ -1,4 +1,5 @@ ;;; ledger-config.el --- Ledger Configuration -*- lexical-binding: t; -*- +;; author Craig Jennings ;;; Commentary: diff --git a/modules/local-repository.el b/modules/local-repository.el index 99e95c836..f99e20a1d 100644 --- a/modules/local-repository.el +++ b/modules/local-repository.el @@ -1,4 +1,5 @@ ;;; local-repository.el --- local repository functionality -*- lexical-binding: t; -*- +;; author Craig Jennings ;;; Commentary: diff --git a/modules/org-babel-config.el b/modules/org-babel-config.el index 01b1e5a12..8bd7a6ede 100644 --- a/modules/org-babel-config.el +++ b/modules/org-babel-config.el @@ -1,4 +1,5 @@ ;;; org-babel-config.el --- Org Babel/Tempo Config -*- lexical-binding: t; -*- +;; author: Craig Jennings ;;; Commentary: ;; All Org-Babel and Org-Tempo Packages, Settings, and Languages. diff --git a/modules/org-capture-config.el b/modules/org-capture-config.el index cc246be7f..b035752b5 100644 --- a/modules/org-capture-config.el +++ b/modules/org-capture-config.el @@ -1,4 +1,5 @@ ;;; org-capture-config.el --- Org Capture Configuration -*- lexical-binding: t; -*- +;; author: Craig Jennings ;;; Commentary: ;; Customizations related to org-capture and org-refile is here. diff --git a/modules/org-contacts-config.el b/modules/org-contacts-config.el index 676b901dd..f6f14c806 100644 --- a/modules/org-contacts-config.el +++ b/modules/org-contacts-config.el @@ -1,5 +1,5 @@ ;;; org-contacts-config.el --- Org Contacts Customizations -*- lexical-binding: t; -*- - +;; author: Craig Jennings ;;; Commentary: ;; Configuration for Org Contacts. diff --git a/modules/org-drill-config.el b/modules/org-drill-config.el index 1a42cdfad..5b1828db6 100644 --- a/modules/org-drill-config.el +++ b/modules/org-drill-config.el @@ -1,4 +1,5 @@ ;;; org-drill-config.el --- Org Drill Settings -*- lexical-binding: t; -*- +;; author: Craig Jennings ;;; Commentary: ;; ;; Notes: Org-Drill diff --git a/modules/org-export-config.el b/modules/org-export-config.el index 4f7db4129..b19671701 100644 --- a/modules/org-export-config.el +++ b/modules/org-export-config.el @@ -1,5 +1,5 @@ ;;; org-export-config.el --- Org Export Configuration -*- lexical-binding: t; -*- - +;; author: Craig Jennings ;;; Commentary: ;;; Code: diff --git a/modules/org-refile-config.el b/modules/org-refile-config.el index cc5653f13..10d391bfe 100644 --- a/modules/org-refile-config.el +++ b/modules/org-refile-config.el @@ -1,5 +1,5 @@ ;;; org-refile-config.el --- Org Refile Customizations -*- lexical-binding: t; -*- - +;; author: Craig Jennings ;;; Commentary: ;; Configuration and custom functions for org-mode refiling. diff --git a/modules/org-roam-config.el b/modules/org-roam-config.el index e7d7b980f..be0c0876a 100644 --- a/modules/org-roam-config.el +++ b/modules/org-roam-config.el @@ -1,5 +1,5 @@ ;;; org-roam-config.el --- Org-Roam Config -*- lexical-binding: t; -*- - +;; author: Craig Jennings ;;; Commentary: ;; Currently a work in progress. The initial version of this was taken from David Wilson: ;; https://systemcrafters.net/build-a-second-brain-in-emacs/5-org-roam-hacks/ diff --git a/modules/prog-comments.el b/modules/prog-comments.el index 62193d6f2..0e022c4b4 100644 --- a/modules/prog-comments.el +++ b/modules/prog-comments.el @@ -1,5 +1,5 @@ ;;; prog-comments.el --- Comments and Underscores -*- lexical-binding: t; -*- - +;; author: Craig Jennings ;;; Commentary: ;; Simple utility functions for creating and managing comments. diff --git a/modules/prog-training.el b/modules/prog-training.el index bada3a0b5..b12fbacac 100644 --- a/modules/prog-training.el +++ b/modules/prog-training.el @@ -1,5 +1,5 @@ ;;; prog-training.el --- Training -*- lexical-binding: t; -*- - +;; author: Craig Jennings ;;; Commentary: ;; diff --git a/modules/prog-webdev.el b/modules/prog-webdev.el index 2d5fc5da8..391edc056 100644 --- a/modules/prog-webdev.el +++ b/modules/prog-webdev.el @@ -1,5 +1,5 @@ ;;; prog-webdev.el --- Web Development Packages and Settings -*- lexical-binding: t; -*- - +;; author: Craig Jennings ;;; Commentary: ;; diff --git a/modules/reconcile-open-repos.el b/modules/reconcile-open-repos.el index ed7c08a6c..044ecdee2 100644 --- a/modules/reconcile-open-repos.el +++ b/modules/reconcile-open-repos.el @@ -1,5 +1,5 @@ ;;; reconcile-open-repos.el --- reconcile open repos -*- lexical-binding: t; -*- - +;; author: Craig Jennings ;;; Commentary: ;; I have tried to keep this Emacs config as general as possible, and move all ;; config related to my personal workflows here. diff --git a/modules/record-desktop.el b/modules/record-desktop.el index 6c5a4fac9..8e4c05287 100644 --- a/modules/record-desktop.el +++ b/modules/record-desktop.el @@ -1,5 +1,5 @@ ;;; record-desktop.el --- Video Record desktop -*- lexical-binding: t; -*- - +;; author: Craig Jennings ;;; Commentary: ;; Use ffmpeg to video record your desktop. ;; with audio from mic and audio from default audio sink diff --git a/modules/system-utils.el b/modules/system-utils.el index e76cd54c4..605a2a1ca 100644 --- a/modules/system-utils.el +++ b/modules/system-utils.el @@ -130,19 +130,16 @@ Don't automatically display output buffers, but keep them in buffer list." (setq openwith-associations (list (list (openwith-make-extension-regexp - '("mpg" "mpeg" "mp3" "mp4" "webp" - "avi" "wmv" "wav" "mov" "flv" - "ogm" "ogg" "mkv")) + '("mpg" "mpeg" "mp3" "mp4" "webm" "avi" "wmv" "wav" "mov" "flv" "ogm" "ogg" "mkv")) "mpv" '(file)) ;; removed jpg from list below as dashboard was opening nxiv (list (openwith-make-extension-regexp - '("xbm" "pbm" "pgm" "ppm" "pnm" - "png" "gif" "bmp" "tif")) + '("xbm" "pbm" "pgm" "ppm" "pnm" "png" "gif" "bmp" "tif")) "nsxiv" '(file)) (list (openwith-make-extension-regexp - '("odt" "odf")) + '("odt" "odf" "xls" "xlsx" "doc" "docx")) "libreoffice" '(file)) (list (openwith-make-extension-regexp diff --git a/modules/telegram-config.el b/modules/telegram-config.el index 6e1da03bf..2de395fc6 100644 --- a/modules/telegram-config.el +++ b/modules/telegram-config.el @@ -1,5 +1,5 @@ ;;; telegram-config.el --- Configuration for the Telegram Client -*- lexical-binding: t; -*- - +;; author: Craig Jennings ;;; Commentary: ;; Telegram Client Setup Notes diff --git a/modules/test-code.el b/modules/test-code.el index 7a6c80e12..f429de8d7 100644 --- a/modules/test-code.el +++ b/modules/test-code.el @@ -1,4 +1,5 @@ ;;; test-code.el --- test code -*- lexical-binding: t; -*- +;; author: Craig Jennings ;;; Commentary: ;; This is where you should put config code you want to test. diff --git a/modules/tramp-config.el b/modules/tramp-config.el index 0ae52db3e..6c3fff5a0 100644 --- a/modules/tramp-config.el +++ b/modules/tramp-config.el @@ -1,4 +1,5 @@ ;;; tramp-config.el --- Tramp Configuration -*- lexical-binding: t; -*- +;; author: Craig Jennings ;;; Commentary: ;; diff --git a/modules/treesitter-config.el b/modules/treesitter-config.el index 1ceabb785..341a3a31e 100644 --- a/modules/treesitter-config.el +++ b/modules/treesitter-config.el @@ -1,4 +1,5 @@ ;;; treesitter-config.el --- Treesitter Code Highlighting Configuration -*- lexical-binding: t; -*- +;; author: Craig Jennings ;;; Commentary: ;; Tree-sitter's now built into Emacs 29+ diff --git a/modules/ui-theme.el b/modules/ui-theme.el index 8d83ac50f..9ffbcc164 100644 --- a/modules/ui-theme.el +++ b/modules/ui-theme.el @@ -1,5 +1,5 @@ ;;; ui-theme.el --- UI Theme Configuration and Persistence -*- lexical-binding: t; -*- -;; Craig Jennings +;; author: Craig Jennings ;; ;;; Commentary: diff --git a/modules/user-constants.el b/modules/user-constants.el index a94091ade..9c401775b 100644 --- a/modules/user-constants.el +++ b/modules/user-constants.el @@ -1,5 +1,5 @@ ;;; user-constants.el --- User Constants -*- lexical-binding: t; -*- - +;; author: Craig Jennings ;;; Commentary: ;; User file locations are defined here. A file or directory is created if it diff --git a/modules/vc-config.el b/modules/vc-config.el index 4205b0e07..0235482be 100644 --- a/modules/vc-config.el +++ b/modules/vc-config.el @@ -1,6 +1,6 @@ ;;; vc-config.el --- Version Control Configuration -*- lexical-binding: t; -*- - +;; author: Craig Jennings ;;; Commentary: ;; C-x g is my general entry to Magit's version control via the status page. diff --git a/modules/weather-config.el b/modules/weather-config.el index 70fda92cd..0c4ad0cb0 100644 --- a/modules/weather-config.el +++ b/modules/weather-config.el @@ -1,5 +1,5 @@ ;;; weather-config.el --- -*- lexical-binding: t; -*- - +;; author: Craig Jennings ;;; Commentary: ;; -- cgit v1.2.3