Excising useless user information

This commit is contained in:
Howard Abrams 2021-11-18 12:12:19 -08:00
parent 08fb7aef82
commit e0e16e57d6
21 changed files with 38 additions and 60 deletions

1
.gitignore vendored
View file

@ -2,3 +2,4 @@
/*.el /*.el
/ha-work.org /ha-work.org
/elisp/gourmet-projects.el /elisp/gourmet-projects.el
/ha-private.org

View file

@ -1,6 +1,5 @@
#+TITLE: My Emacs Configuration #+TITLE: My Emacs Configuration
#+AUTHOR: Howard X. Abrams #+AUTHOR: Howard X. Abrams
#+EMAIL: howard.abrams@gmail.com
#+DATE: 2021-11-01 November #+DATE: 2021-11-01 November
#+TAGS: emacs #+TAGS: emacs
@ -22,12 +21,12 @@ This creates [[file:~/.emacs.d/init.el][~/.emacs.d/init.el]] that starts the pro
- [[file:ha-org-publishing.org][ha-org-publishing.org]] :: code for publishing my website, [[http://howardism.org][www.howardism.org]]. - [[file:ha-org-publishing.org][ha-org-publishing.org]] :: code for publishing my website, [[http://howardism.org][www.howardism.org]].
- [[file:ha-org-sprint.org][ha-org-sprint.org]] :: functions for working with the my Org-focused sprint files. - [[file:ha-org-sprint.org][ha-org-sprint.org]] :: functions for working with the my Org-focused sprint files.
- [[file:ha-remoting.org][ha-remoting.org]] :: my interface to systems using SSH and Vterm. - [[file:ha-remoting.org][ha-remoting.org]] :: my interface to systems using SSH and Vterm.
- [[file:ha-email.org][ha-email.org]] :: reading email using =notmuch= in a *Hey* fashion.
- [[file:ha-feed-reader.org][ha-feed-reader.org]] :: configuration of elfeed as well as my RSS feeds. - [[file:ha-feed-reader.org][ha-feed-reader.org]] :: configuration of elfeed as well as my RSS feeds.
- [[file:ha-capturing-notes.org][ha-capturing-notes.org]] :: my engineering notebook. - [[file:ha-capturing-notes.org][ha-capturing-notes.org]] :: my engineering notebook.
- [[file:ha-agendas.org][ha-agendas.org]] :: Attempts to "supe-up" my task list. - [[file:ha-agendas.org][ha-agendas.org]] :: attempts to "supe-up" my task list.
- [[file:ha-email.org][ha-email.org]] :: Reading email using =notmuch= in a *Hey* fashion. - [[file:ha-irc.org][ha-irc.org]] :: connection to IRC servers using rcirc and bitlbee.
- [[file:ha-irc.org][ha-irc.org]] :: Connection to IRC servers using rcirc and bitlbee. - [[file:ha-passwords.org][ha-passwords.org]] :: code for generating passwords.
- [[file:ha-passwords.org][ha-passwords.org]] :: Code for generating passwords.
- [[file:ha-programming.org][ha-programming.org]] :: configuration for /all/ programming languages, or at least, the simple ones. - [[file:ha-programming.org][ha-programming.org]] :: configuration for /all/ programming languages, or at least, the simple ones.
- [[file:ha-programming-python.org][ha-programming-python.org]] :: configuration for working with Python and LSP. - [[file:ha-programming-python.org][ha-programming-python.org]] :: configuration for working with Python and LSP.

View file

@ -1,6 +1,5 @@
#+TITLE: My Emacs Bootstrap #+TITLE: My Emacs Bootstrap
#+AUTHOR: Howard X. Abrams #+AUTHOR: Howard X. Abrams
#+EMAIL: howard.abrams@gmail.com
#+DATE: 2021-10-08 #+DATE: 2021-10-08
#+FILETAGS: :emacs: #+FILETAGS: :emacs:
@ -12,7 +11,7 @@ A literate programming file for bootstraping my Emacs Configuration.
;; Copyright (C) 2021 Howard X. Abrams ;; Copyright (C) 2021 Howard X. Abrams
;; ;;
;; Author: Howard X. Abrams <http://gitlab.com/howardabrams> ;; Author: Howard X. Abrams <http://gitlab.com/howardabrams>
;; Maintainer: Howard X. Abrams <howard.abrams@gmail.com> ;; Maintainer: Howard X. Abrams
;; Created: October 8, 2021 ;; Created: October 8, 2021
;; ;;
;; This file is not part of GNU Emacs. ;; This file is not part of GNU Emacs.
@ -58,7 +57,7 @@ The following packages come with Emacs, but seems like they still need loading:
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(require 'subr-x) (require 'subr-x)
#+END_SRC #+END_SRC
Ugh. Why am I getting this error? Ugh. Why am I getting a missing =first= function error? Let's just define it:
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(defun first (elt) (car elt)) (defun first (elt) (car elt))
#+END_SRC #+END_SRC
@ -108,26 +107,28 @@ the native-comp model, but I reserve the right to change this."
* Load the Rest * Load the Rest
The following loads the rest of my org-mode literate files. I add them as they are /ready/, but eventually, I'll trim this up into a nicer pattern. The following loads the rest of my org-mode literate files. I add them as they are /ready/, but eventually, I'll trim this up into a nicer pattern.
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp
(defvar ha-hamacs-files `("ha-config.org" (defvar ha-hamacs-files `("ha-private.org"
"ha-config.org"
,(when (display-graphic-p) ,(when (display-graphic-p)
"ha-display.org") "ha-display.org")
"ha-org.org" "ha-org.org"
,(when (display-graphic-p) ,(when (display-graphic-p)
"ha-org-word-processor.org") "ha-org-word-processor.org")
"ha-org-clipboard.org" "ha-org-clipboard.org"
"ha-org-journaling.org"
"ha-org-publishing.org"
"ha-org-sprint.org"
"ha-capturing-notes.org" "ha-capturing-notes.org"
"ha-programming.org"
"ha-agendas.org" "ha-agendas.org"
"ha-email.org"
"ha-irc.org" "ha-irc.org"
"ha-passwords.org" "ha-passwords.org"
"ha-remoting.org" "ha-remoting.org"
"ha-feed-reader.org" "ha-programming.org"
"ha-programming-python.org"
,(unless (ha-emacs-for-work?)
"ha-org-journaling.org"
"ha-org-publishing.org"
"ha-email.org"
"ha-feed-reader.org")
,(when (ha-emacs-for-work?) ,(when (ha-emacs-for-work?)
"ha-org-sprint.org"
"ha-work.org")) "ha-work.org"))
"List of org files that complete the hamacs project.") "List of org files that complete the hamacs project.")
#+END_SRC #+END_SRC
@ -137,7 +138,9 @@ We can test/debug/reload any individual file, via:
(defun ha-hamacs-load (file) (defun ha-hamacs-load (file)
"Load or reload an org-mode FILE containing literate Emacs configuration code." "Load or reload an org-mode FILE containing literate Emacs configuration code."
(interactive (list (completing-read "Org file: " ha-hamacs-files))) (interactive (list (completing-read "Org file: " ha-hamacs-files)))
(org-babel-load-file (f-join hamacs-source-dir file))) (let ((full-file (f-join hamacs-source-dir file)))
(when (f-exists? full-file)
(org-babel-load-file full-file))))
#+END_SRC #+END_SRC
And we can now load everything: And we can now load everything:

View file

@ -1,6 +1,5 @@
#+TITLE: Org Agenda Configuration #+TITLE: Org Agenda Configuration
#+AUTHOR: Howard X. Abrams #+AUTHOR: Howard X. Abrams
#+EMAIL: howard.abrams@gmail.com
#+DATE: 2020-09-18 #+DATE: 2020-09-18
#+FILETAGS: :emacs: #+FILETAGS: :emacs:
@ -12,7 +11,7 @@ A literate programming configuration for fancy agenda and todo lists.
;; Copyright (C) 2020 Howard X. Abrams ;; Copyright (C) 2020 Howard X. Abrams
;; ;;
;; Author: Howard X. Abrams <http://gitlab.com/howardabrams> ;; Author: Howard X. Abrams <http://gitlab.com/howardabrams>
;; Maintainer: Howard X. Abrams <howard.abrams@gmail.com> ;; Maintainer: Howard X. Abrams
;; Created: September 18, 2020 ;; Created: September 18, 2020
;; ;;
;; This file is not part of GNU Emacs. ;; This file is not part of GNU Emacs.

View file

@ -1,6 +1,5 @@
#+TITLE: Capturing Notes with Org #+TITLE: Capturing Notes with Org
#+AUTHOR: Howard X. Abrams #+AUTHOR: Howard X. Abrams
#+EMAIL: howard.abrams@gmail.com
#+DATE: 2020-09-18 #+DATE: 2020-09-18
#+FILETAGS: :emacs: #+FILETAGS: :emacs:
@ -12,7 +11,7 @@ A literate programming file for configuring org for capturing notes.
;; Copyright (C) 2020 Howard X. Abrams ;; Copyright (C) 2020 Howard X. Abrams
;; ;;
;; Author: Howard X. Abrams <http://gitlab.com/howardabrams> ;; Author: Howard X. Abrams <http://gitlab.com/howardabrams>
;; Maintainer: Howard X. Abrams <howard.abrams@gmail.com> ;; Maintainer: Howard X. Abrams
;; Created: September 18, 2020 ;; Created: September 18, 2020
;; ;;
;; This file is not part of GNU Emacs. ;; This file is not part of GNU Emacs.

View file

@ -1,6 +1,5 @@
#+TITLE: General Emacs Configuration #+TITLE: General Emacs Configuration
#+AUTHOR: Howard X. Abrams #+AUTHOR: Howard X. Abrams
#+EMAIL: howard.abrams@gmail.com
#+DATE: 2020-09-10 #+DATE: 2020-09-10
#+FILETAGS: :emacs: #+FILETAGS: :emacs:
@ -12,7 +11,7 @@ A literate programming file for configuring Emacs.
;; Copyright (C) 2020-2021 Howard X. Abrams ;; Copyright (C) 2020-2021 Howard X. Abrams
;; ;;
;; Author: Howard X. Abrams <http://gitlab.com/howardabrams> ;; Author: Howard X. Abrams <http://gitlab.com/howardabrams>
;; Maintainer: Howard X. Abrams <howard.abrams@gmail.com> ;; Maintainer: Howard X. Abrams
;; Created: September 10, 2020 ;; Created: September 10, 2020
;; ;;
;; This file is not part of GNU Emacs. ;; This file is not part of GNU Emacs.
@ -24,14 +23,6 @@ A literate programming file for configuring Emacs.
;;; Code: ;;; Code:
#+END_SRC #+END_SRC
* Introduction * Introduction
The following are general variable settings, and doesn't really belong to any specific purpose.
#+BEGIN_SRC emacs-lisp
(setq user-full-name "Howard X. Abrams"
user-mail-address "howard.abrams@gmail.com")
#+END_SRC
New way to display line-numbers. I set mine to =relative= so that I can easily jump up and down by that value. Set this to =nil= to turn off, or =t= to be absolute. New way to display line-numbers. I set mine to =relative= so that I can easily jump up and down by that value. Set this to =nil= to turn off, or =t= to be absolute.
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp

View file

@ -1,6 +1,5 @@
#+TITLE: Emacs Graphical Display Configuration #+TITLE: Emacs Graphical Display Configuration
#+AUTHOR: Howard X. Abrams #+AUTHOR: Howard X. Abrams
#+EMAIL: howard.abrams@gmail.com
#+DATE: 2020-09-10 #+DATE: 2020-09-10
#+FILETAGS: :emacs: #+FILETAGS: :emacs:
@ -13,7 +12,7 @@ A literate programming file to configure the Emacs UI.
;; Copyright (C) 2020 Howard X. Abrams ;; Copyright (C) 2020 Howard X. Abrams
;; ;;
;; Author: Howard X. Abrams <http://gitlab.com/howardabrams> ;; Author: Howard X. Abrams <http://gitlab.com/howardabrams>
;; Maintainer: Howard X. Abrams <howard.abrams@gmail.com> ;; Maintainer: Howard X. Abrams
;; Created: September 10, 2020 ;; Created: September 10, 2020
;; ;;
;; This file is not part of GNU Emacs. ;; This file is not part of GNU Emacs.

View file

@ -1,6 +1,5 @@
#+TITLE: Configuring Emacs for Email with Notmuch #+TITLE: Configuring Emacs for Email with Notmuch
#+AUTHOR: Howard X. Abrams #+AUTHOR: Howard X. Abrams
#+EMAIL: howard.abrams@gmail.com
#+DATE: 2020-09-16 #+DATE: 2020-09-16
#+FILETAGS: :emacs: #+FILETAGS: :emacs:
@ -12,7 +11,7 @@ A literate configuration file for email using Notmuch.
;; Copyright (C) 2020 Howard X. Abrams ;; Copyright (C) 2020 Howard X. Abrams
;; ;;
;; Author: Howard X. Abrams <http://gitlab.com/howardabrams> ;; Author: Howard X. Abrams <http://gitlab.com/howardabrams>
;; Maintainer: Howard X. Abrams <howard.abrams@gmail.com> ;; Maintainer: Howard X. Abrams
;; Created: September 16, 2020 ;; Created: September 16, 2020
;; ;;
;; This file is not part of GNU Emacs. ;; This file is not part of GNU Emacs.

View file

@ -1,6 +1,5 @@
#+TITLE: My RSS Feeds #+TITLE: My RSS Feeds
#+AUTHOR: Howard Abrams #+AUTHOR: Howard Abrams
#+EMAIL: howard.abrams@gmail.com
#+DATE: 2018-08-08 August #+DATE: 2018-08-08 August
#+FILETAGS: :elfeed: #+FILETAGS: :elfeed:
@ -12,7 +11,7 @@ A literate programming file for configuring =elfeed= in Emacs.
;; Copyright (C) 2020-2021 Howard X. Abrams ;; Copyright (C) 2020-2021 Howard X. Abrams
;; ;;
;; Author: Howard X. Abrams <http://gitlab.com/howardabrams> ;; Author: Howard X. Abrams <http://gitlab.com/howardabrams>
;; Maintainer: Howard X. Abrams <howard.abrams@gmail.com> ;; Maintainer: Howard X. Abrams
;; Created: September 10, 2020 ;; Created: September 10, 2020
;; ;;
;; This file is not part of GNU Emacs. ;; This file is not part of GNU Emacs.

View file

@ -1,6 +1,5 @@
#+TITLE: Literate Programming with Org #+TITLE: Literate Programming with Org
#+AUTHOR: Howard X. Abrams #+AUTHOR: Howard X. Abrams
#+EMAIL: howard.abrams@gmail.com
#+DATE: 2021-11-05 #+DATE: 2021-11-05
#+FILETAGS: :emacs: #+FILETAGS: :emacs:
@ -12,7 +11,7 @@ This section is primarily about development in a literate way, especially focuse
;; Copyright (C) 2021 Howard X. Abrams ;; Copyright (C) 2021 Howard X. Abrams
;; ;;
;; Author: Howard X. Abrams <http://gitlab.com/howardabrams> ;; Author: Howard X. Abrams <http://gitlab.com/howardabrams>
;; Maintainer: Howard X. Abrams <howard.abrams@gmail.com> ;; Maintainer: Howard X. Abrams
;; Created: November 5, 2021 ;; Created: November 5, 2021
;; ;;
;; This file is not part of GNU Emacs. ;; This file is not part of GNU Emacs.

View file

@ -1,6 +1,5 @@
#+TITLE: Pasting the Org Clipboard #+TITLE: Pasting the Org Clipboard
#+AUTHOR: Howard X. Abrams #+AUTHOR: Howard X. Abrams
#+EMAIL: howard.abrams@gmail.com
#+DATE: 2020-09-15 #+DATE: 2020-09-15
#+FILETAGS: :emacs: #+FILETAGS: :emacs:
@ -13,7 +12,7 @@ A literate programming file of functions for formatting the clipboard.
;; Copyright (C) 2020 Howard X. Abrams ;; Copyright (C) 2020 Howard X. Abrams
;; ;;
;; Author: Howard X. Abrams <http://gitlab.com/howardabrams> ;; Author: Howard X. Abrams <http://gitlab.com/howardabrams>
;; Maintainer: Howard X. Abrams <howard.abrams@gmail.com> ;; Maintainer: Howard X. Abrams
;; Created: September 15, 2020 ;; Created: September 15, 2020
;; ;;
;; This file is not part of GNU Emacs. ;; This file is not part of GNU Emacs.

View file

@ -1,6 +1,5 @@
#+TITLE: Org Journaling #+TITLE: Org Journaling
#+AUTHOR: Howard X. Abrams #+AUTHOR: Howard X. Abrams
#+EMAIL: howard.abrams@gmail.com
#+DATE: 2020-09-24 #+DATE: 2020-09-24
#+FILETAGS: :emacs: #+FILETAGS: :emacs:
@ -12,7 +11,7 @@ A literate programming configuration file for extending the Journaling capabilit
;; Copyright (C) 2020 Howard X. Abrams ;; Copyright (C) 2020 Howard X. Abrams
;; ;;
;; Author: Howard X. Abrams <http://gitlab.com/howardabrams> ;; Author: Howard X. Abrams <http://gitlab.com/howardabrams>
;; Maintainer: Howard X. Abrams <howard.abrams@gmail.com> ;; Maintainer: Howard X. Abrams
;; Created: September 24, 2020 ;; Created: September 24, 2020
;; ;;
;; This file is not part of GNU Emacs. ;; This file is not part of GNU Emacs.

View file

@ -1,6 +1,5 @@
#+TITLE: Publishing my Website with Org #+TITLE: Publishing my Website with Org
#+AUTHOR: Howard X. Abrams #+AUTHOR: Howard X. Abrams
#+EMAIL: howard.abrams@gmail.com
#+DATE: 2020-12-22 #+DATE: 2020-12-22
#+FILETAGS: :emacs: #+FILETAGS: :emacs:
@ -12,7 +11,7 @@ A literate programming file for publishing my website using org.
;; Copyright (C) 2020 Howard X. Abrams ;; Copyright (C) 2020 Howard X. Abrams
;; ;;
;; Author: Howard X. Abrams <http://gitlab.com/howardabrams> ;; Author: Howard X. Abrams <http://gitlab.com/howardabrams>
;; Maintainer: Howard X. Abrams <howard.abrams@gmail.com> ;; Maintainer: Howard X. Abrams
;; Created: December 22, 2020 ;; Created: December 22, 2020
;; ;;
;; This file is not part of GNU Emacs. ;; This file is not part of GNU Emacs.

View file

@ -1,6 +1,5 @@
#+TITLE: My Sprint Calculations and Support #+TITLE: My Sprint Calculations and Support
#+AUTHOR: Howard X. Abrams #+AUTHOR: Howard X. Abrams
#+EMAIL: howard.abrams@gmail.com
#+DATE: 2020-09-25 #+DATE: 2020-09-25
#+FILETAGS: :emacs: #+FILETAGS: :emacs:
@ -13,7 +12,7 @@ A literate program for configuring org files for work-related notes.
;; Copyright (C) 2020 Howard X. Abrams ;; Copyright (C) 2020 Howard X. Abrams
;; ;;
;; Author: Howard X. Abrams <http://gitlab.com/howardabrams> ;; Author: Howard X. Abrams <http://gitlab.com/howardabrams>
;; Maintainer: Howard X. Abrams <howard.abrams@gmail.com> ;; Maintainer: Howard X. Abrams
;; Created: September 25, 2020 ;; Created: September 25, 2020
;; ;;
;; This file is not part of GNU Emacs. ;; This file is not part of GNU Emacs.

View file

@ -1,6 +1,5 @@
#+TITLE: Org As A Word Processor #+TITLE: Org As A Word Processor
#+AUTHOR: Howard X. Abrams #+AUTHOR: Howard X. Abrams
#+EMAIL: howard.abrams@gmail.com
#+DATE: 2020-09-10 #+DATE: 2020-09-10
#+FILETAGS: :emacs: #+FILETAGS: :emacs:
@ -13,7 +12,7 @@ A literate programming file for making Org file more readable.
;; Copyright (C) 2020 Howard X. Abrams ;; Copyright (C) 2020 Howard X. Abrams
;; ;;
;; Author: Howard X. Abrams <http://gitlab.com/howardabrams> ;; Author: Howard X. Abrams <http://gitlab.com/howardabrams>
;; Maintainer: Howard X. Abrams <howard.abrams@gmail.com> ;; Maintainer: Howard X. Abrams
;; Created: September 10, 2020 ;; Created: September 10, 2020
;; ;;
;; This file is not part of GNU Emacs. ;; This file is not part of GNU Emacs.

View file

@ -1,6 +1,5 @@
#+TITLE: General Org-Mode Configuration #+TITLE: General Org-Mode Configuration
#+AUTHOR: Howard X. Abrams #+AUTHOR: Howard X. Abrams
#+EMAIL: howard.abrams@gmail.com
#+DATE: 2020-09-18 #+DATE: 2020-09-18
#+FILETAGS: :emacs: #+FILETAGS: :emacs:
@ -11,7 +10,7 @@ A literate programming file for configuring org-mode and those files.
;; Copyright (C) 2020 Howard X. Abrams ;; Copyright (C) 2020 Howard X. Abrams
;; ;;
;; Author: Howard X. Abrams <http://gitlab.com/howardabrams> ;; Author: Howard X. Abrams <http://gitlab.com/howardabrams>
;; Maintainer: Howard X. Abrams <howard.abrams@gmail.com> ;; Maintainer: Howard X. Abrams
;; Created: September 18, 2020 ;; Created: September 18, 2020
;; ;;
;; This file is not part of GNU Emacs. ;; This file is not part of GNU Emacs.

View file

@ -1,6 +1,5 @@
#+TITLE: Personal Password Generator #+TITLE: Personal Password Generator
#+AUTHOR: Howard X. Abrams #+AUTHOR: Howard X. Abrams
#+EMAIL: howard.abrams@gmail.com
#+DATE: 2021-01-11 #+DATE: 2021-01-11
#+FILETAGS: :emacs: #+FILETAGS: :emacs:
@ -12,7 +11,7 @@ A literate programming version for Emacs code to generate and store passwords.
;; Copyright (C) 2021 Howard X. Abrams ;; Copyright (C) 2021 Howard X. Abrams
;; ;;
;; Author: Howard X. Abrams <http://gitlab.com/howardabrams> ;; Author: Howard X. Abrams <http://gitlab.com/howardabrams>
;; Maintainer: Howard X. Abrams <howard.abrams@gmail.com> ;; Maintainer: Howard X. Abrams
;; Created: January 11, 2021 ;; Created: January 11, 2021
;; ;;
;; This file is not part of GNU Emacs. ;; This file is not part of GNU Emacs.

View file

@ -1,6 +1,5 @@
#+TITLE: Configuring Python in Emacs #+TITLE: Configuring Python in Emacs
#+AUTHOR: Howard X. Abrams #+AUTHOR: Howard X. Abrams
#+EMAIL: howard.abrams@gmail.com
#+DATE: 2021-11-16 #+DATE: 2021-11-16
#+FILETAGS: :emacs: #+FILETAGS: :emacs:
@ -12,7 +11,7 @@ A literate programming file for configuring Python.
;; Copyright (C) 2021 Howard X. Abrams ;; Copyright (C) 2021 Howard X. Abrams
;; ;;
;; Author: Howard X. Abrams <http://gitlab.com/howardabrams> ;; Author: Howard X. Abrams <http://gitlab.com/howardabrams>
;; Maintainer: Howard X. Abrams <howard.abrams@gmail.com> ;; Maintainer: Howard X. Abrams
;; Created: November 16, 2021 ;; Created: November 16, 2021
;; ;;
;; This file is not part of GNU Emacs. ;; This file is not part of GNU Emacs.

View file

@ -1,6 +1,5 @@
#+TITLE: General Programming Configuration #+TITLE: General Programming Configuration
#+AUTHOR: Howard X. Abrams #+AUTHOR: Howard X. Abrams
#+EMAIL: howard.abrams@gmail.com
#+DATE: 2020-10-26 #+DATE: 2020-10-26
#+FILETAGS: :emacs: #+FILETAGS: :emacs:
@ -12,7 +11,7 @@ A literate programming file for helping me program.
;; Copyright (C) 2020 Howard X. Abrams ;; Copyright (C) 2020 Howard X. Abrams
;; ;;
;; Author: Howard X. Abrams <http://gitlab.com/howardabrams> ;; Author: Howard X. Abrams <http://gitlab.com/howardabrams>
;; Maintainer: Howard X. Abrams <howard.abrams@gmail.com> ;; Maintainer: Howard X. Abrams
;; Created: October 26, 2020 ;; Created: October 26, 2020
;; ;;
;; This file is not part of GNU Emacs. ;; This file is not part of GNU Emacs.

View file

@ -1,6 +1,5 @@
#+TITLE: Remote Access to Systems #+TITLE: Remote Access to Systems
#+AUTHOR: Howard X. Abrams #+AUTHOR: Howard X. Abrams
#+EMAIL: howard.abrams@gmail.com
#+DATE: 2020-09-25 #+DATE: 2020-09-25
#+FILETAGS: :emacs: #+FILETAGS: :emacs:
@ -12,7 +11,7 @@ A literate configuration for accessing remote systems.
;; Copyright (C) 2020 Howard X. Abrams ;; Copyright (C) 2020 Howard X. Abrams
;; ;;
;; Author: Howard X. Abrams <http://gitlab.com/howardabrams> ;; Author: Howard X. Abrams <http://gitlab.com/howardabrams>
;; Maintainer: Howard X. Abrams <howard.abrams@gmail.com> ;; Maintainer: Howard X. Abrams
;; Created: September 25, 2020 ;; Created: September 25, 2020
;; ;;
;; This file is not part of GNU Emacs. ;; This file is not part of GNU Emacs.

View file

@ -16,7 +16,7 @@ ${2:A literate programming file configuring Emacs.}
;; Copyright (C) `(format-time-string "%Y")` `user-full-name` ;; Copyright (C) `(format-time-string "%Y")` `user-full-name`
;; ;;
;; Author: `user-full-name` <http://gitlab.com/howardabrams> ;; Author: `user-full-name` <http://gitlab.com/howardabrams>
;; Maintainer: `user-full-name` <`user-mail-address`> ;; Maintainer: `user-full-name`
;; Created: `(format-time-string "%B %e, %Y")` ;; Created: `(format-time-string "%B %e, %Y")`
;; ;;
;; This file is not part of GNU Emacs. ;; This file is not part of GNU Emacs.