File header and footer updates.
authorAmin Bandali <bandali@gnu.org>
Tue, 14 Apr 2020 22:33:50 +0000 (18:33 -0400)
committerAmin Bandali <bandali@gnu.org>
Tue, 14 Apr 2020 22:33:50 +0000 (18:33 -0400)
* init.el: Bump copyright year.
* lisp/bandali-dired.el, lisp/bandali-ebdb.el, lisp/bandali-erc.el,
lisp/bandali-eshell.el, lisp/bandali-exwm.el, lisp/bandali-gnus.el,
lisp/bandali-ibuffer.el, lisp/bandali-ido.el, lisp/bandali-ivy.el,
lisp/bandali-message.el, lisp/bandali-org.el: Add header and footer.

12 files changed:
init.el
lisp/bandali-dired.el
lisp/bandali-ebdb.el
lisp/bandali-erc.el
lisp/bandali-eshell.el
lisp/bandali-exwm.el
lisp/bandali-gnus.el
lisp/bandali-ibuffer.el
lisp/bandali-ido.el
lisp/bandali-ivy.el
lisp/bandali-message.el
lisp/bandali-org.el

diff --git a/init.el b/init.el
index 98a3842..4eb0129 100644 (file)
--- a/init.el
+++ b/init.el
@@ -1,6 +1,6 @@
 ;;; init.el --- bandali's emacs configuration -*- lexical-binding: t -*-
 
-;; Copyright (C) 2018-2019  Amin Bandali <bandali@gnu.org>
+;; Copyright (C) 2018-2020  Amin Bandali <bandali@gnu.org>
 
 ;; This program is free software: you can redistribute it and/or modify
 ;; it under the terms of the GNU General Public License as published by
index 537ea24..f89676e 100644 (file)
@@ -1,3 +1,29 @@
+;;; bandali-dired.el --- bandali's dired setup       -*- lexical-binding: t; -*-
+
+;; Copyright (C) 2018-2020  Amin Bandali
+
+;; Author: Amin Bandali <bandali@gnu.org>
+;; Keywords: files
+
+;; This program is free software; you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation, either version 3 of the License, or
+;; (at your option) any later version.
+
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with this program.  If not, see <https://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;; My dired setup and customizations.
+
+;;; Code:
+
 (use-package dired
   :config
   (setq dired-dwim-target t
@@ -49,3 +75,4 @@
   :hook (dired-mode . dired-hide-details-mode))
 
 (provide 'bandali-dired)
+;;; bandali-dired.el ends here
index 8b8f3c0..a7315c4 100644 (file)
@@ -1,3 +1,29 @@
+;;; bandali-ebdb.el --- bandali's EBDB configuration  -*- lexical-binding: t; -*-
+
+;; Copyright (C) 2018-2020  Amin Bandali
+
+;; Author: Amin Bandali <bandali@gnu.org>
+;; Keywords: tools
+
+;; This program is free software; you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation, either version 3 of the License, or
+;; (at your option) any later version.
+
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with this program.  If not, see <https://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;; My EBDB setup.
+
+;;; Code:
+
 (use-package ebdb
   :demand
   :after gnus
@@ -42,3 +68,4 @@
 ;;   :after ebdb)
 
 (provide 'bandali-ebdb)
+;;; bandali-ebdb.el ends here
index bc82bc6..afdc949 100644 (file)
@@ -1,3 +1,29 @@
+;;; bandali-erc.el --- bandali's ERC setup           -*- lexical-binding: t; -*-
+
+;; Copyright (C) 2018-2020  Amin Bandali
+
+;; Author: Amin Bandali <bandali@gnu.org>
+;; Keywords: tools
+
+;; This program is free software; you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation, either version 3 of the License, or
+;; (at your option) any later version.
+
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with this program.  If not, see <https://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;; My ERC setup for IRC.  It uses my fork of ZNC.el.
+
+;;; Code:
+
 (use-package erc
   :bind ("C-c w e" . erc-switch-to-buffer-other-window)
   :custom
              ((oftc "amin/oftc" ,pwd)))))))
 
 (provide 'bandali-erc)
+;;; bandali-erc.el ends here
index 07ed623..f92f930 100644 (file)
@@ -1,3 +1,29 @@
+;;; bandali-eshell.el --- bandali's Eshell setup     -*- lexical-binding: t; -*-
+
+;; Copyright (C) 2018-2020  Amin Bandali
+
+;; Author: Amin Bandali <bandali@gnu.org>
+;; Keywords: processes
+
+;; This program is free software; you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation, either version 3 of the License, or
+;; (at your option) any later version.
+
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with this program.  If not, see <https://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;; My awesome Eshell setup.
+
+;;; Code:
+
 (use-package eshell
   :commands eshell
   :bind ("C-c a s e" . eshell)
@@ -48,3 +74,4 @@
   (eshell-input-filter 'eshell-input-filter-initial-space))
 
 (provide 'bandali-eshell)
+;;; bandali-eshell.el ends here
index d9be901..6b57898 100644 (file)
@@ -1,3 +1,29 @@
+;;; bandali-exwm.el --- bandali's EXWM configuration  -*- lexical-binding: t; -*-
+
+;; Copyright (C) 2018-2020  Amin Bandali
+
+;; Author: Amin Bandali <bandali@gnu.org>
+;; Keywords: tools
+
+;; This program is free software; you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation, either version 3 of the License, or
+;; (at your option) any later version.
+
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with this program.  If not, see <https://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;; My EXWM setup.  Makes good use of its simulation keys.
+
+;;; Code:
+
 (use-package exwm
   :if b/exwm-p
   :demand
@@ -210,3 +236,4 @@ around if needed."
   :after exwm)
 
 (provide 'bandali-exwm)
+;;; bandali-exwm.el ends here
index bb5ea02..de01c0f 100644 (file)
@@ -1,3 +1,29 @@
+;;; bandali-gnus.el --- bandali's Gnus setup         -*- lexical-binding: t; -*-
+
+;; Copyright (C) 2018-2020  Amin Bandali
+
+;; Author: Amin Bandali <bandali@gnu.org>
+;; Keywords: mail, news
+
+;; This program is free software; you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation, either version 3 of the License, or
+;; (at your option) any later version.
+
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with this program.  If not, see <https://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;; My trusty super awesome Gnus setup.
+
+;;; Code:
+
 (defvar b/maildir (expand-file-name "~/mail/"))
 (with-eval-after-load 'recentf
   (add-to-list 'recentf-exclude b/maildir))
@@ -419,3 +445,4 @@ https://csclub.uwaterloo.ca/~abandali")
         '("^@@ -[0-9]+,[0-9]+ \\+[0-9]+,[0-9]+ @@")))
 
 (provide 'bandali-gnus)
+;;; bandali-gnus.el ends here
index 9b1b9b3..dd5857d 100644 (file)
@@ -1,3 +1,29 @@
+;;; bandali-ibuffer.el --- bandali's Ibuffer setup   -*- lexical-binding: t; -*-
+
+;; Copyright (C) 2018-2020  Amin Bandali
+
+;; Author: Amin Bandali <bandali@gnu.org>
+;; Keywords: tools
+
+;; This program is free software; you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation, either version 3 of the License, or
+;; (at your option) any later version.
+
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with this program.  If not, see <https://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;; My Ibuffer setup.
+
+;;; Code:
+
 (use-package ibuffer
   :bind
   (("C-x C-b" . ibuffer)
   :hook (ibuffer . (lambda () (ibuffer-switch-to-saved-filter-groups "default"))))
 
 (provide 'bandali-ibuffer)
+;;; bandali-ibuffer.el ends here
index 2639888..55bc937 100644 (file)
@@ -1,3 +1,29 @@
+;;; bandali-ido.el --- bandali's Ido setup           -*- lexical-binding: t; -*-
+
+;; Copyright (C) 2018-2020  Amin Bandali
+
+;; Author: Amin Bandali <bandali@gnu.org>
+;; Keywords: convenience, matching
+
+;; This program is free software; you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation, either version 3 of the License, or
+;; (at your option) any later version.
+
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with this program.  If not, see <https://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;; My (currently unused) Ido setup.
+
+;;; Code:
+
 (use-package ido
   :demand
   :bind
@@ -47,3 +73,4 @@
   (icomplete-mode 1))
 
 (provide 'bandali-ido)
+;;; bandali-ido.el ends here
index 763168b..4a88a13 100644 (file)
@@ -1,3 +1,29 @@
+;;; bandali-ivy.el --- bandali's Ivy setup           -*- lexical-binding: t; -*-
+
+;; Copyright (C) 2018-2020  Amin Bandali
+
+;; Author: Amin Bandali <bandali@gnu.org>
+;; Keywords: matching
+
+;; This program is free software; you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation, either version 3 of the License, or
+;; (at your option) any later version.
+
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with this program.  If not, see <https://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;; My configuration for Ivy and family.
+
+;;; Code:
+
 (use-package ivy
   :defer 0.3
   :bind
@@ -52,3 +78,4 @@ This function is intended for use with `ivy-ignore-buffers'."
   (defalias 'locate #'counsel-locate))
 
 (provide 'bandali-ivy)
+;;; bandali-ivy.el ends here
index 33bebc9..be88049 100644 (file)
@@ -1,3 +1,29 @@
+;;; bandali-message.el --- bandali's message.el setup  -*- lexical-binding: t; -*-
+
+;; Copyright (C) 2018-2020  Amin Bandali
+
+;; Author: Amin Bandali <bandali@gnu.org>
+;; Keywords: mail, news
+
+;; This program is free software; you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation, either version 3 of the License, or
+;; (at your option) any later version.
+
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with this program.  If not, see <https://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;; My setup for message.el.
+
+;;; Code:
+
 (use-package message
   :bind (:map message-mode-map ("<C-return>" . b/insert-asterism))
   :config
       (gnus-harvest-install))))
 
 (provide 'bandali-message)
+;;; bandali-message.el ends here
index 9938579..76b5c6c 100644 (file)
@@ -1,3 +1,29 @@
+;;; bandali-org.el --- bandali's Org setup           -*- lexical-binding: t; -*-
+
+;; Copyright (C) 2018-2020  Amin Bandali
+
+;; Author: Amin Bandali <bandali@gnu.org>
+;; Keywords: calendar, data, docs, hypermedia, outlines
+
+;; This program is free software; you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation, either version 3 of the License, or
+;; (at your option) any later version.
+
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with this program.  If not, see <https://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;; My set up for Org (org-mode) and all things Org.
+
+;;; Code:
+
 (use-package org
   :config
   (setq org-src-tab-acts-natively t
   :hook (org-mode . org-tanglesync-mode))
 
 (provide 'bandali-org)
+;;; bandali-org.el ends here