summary refs log tree commit diff
path: root/emacs/custom/fcuny-vars.el
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-03-22 06:41:03 -0700
committerFranck Cuny <franck@fcuny.net>2022-03-22 06:41:03 -0700
commit8d07229eeacc4c789be68d03e18fc704dc26038b (patch)
tree8499e9c45e4138858e4cb547a8159e3057fba54f /emacs/custom/fcuny-vars.el
parentnotmuch: make flymake happy (diff)
downloademacs.d-8d07229eeacc4c789be68d03e18fc704dc26038b.tar.gz
vars: make flymake happy
Diffstat (limited to 'emacs/custom/fcuny-vars.el')
-rw-r--r--emacs/custom/fcuny-vars.el7
1 files changed, 6 insertions, 1 deletions
diff --git a/emacs/custom/fcuny-vars.el b/emacs/custom/fcuny-vars.el
index 3f025fc..632e4c5 100644
--- a/emacs/custom/fcuny-vars.el
+++ b/emacs/custom/fcuny-vars.el
@@ -1,3 +1,7 @@
+;;; fcuny-vars.el --- Set a number of variables
+;;; Commentary:
+;;; Code:
+
 (defvar fcuny/path-emacs-var (expand-file-name "var" user-emacs-directory)
   "Path to some files for Emacs.")
 
@@ -5,7 +9,7 @@
   "Path to some files for Emacs.")
 
 (defvar fcuny/custom-settings (expand-file-name "emacs-custom.el" fcuny/path-emacs-var)
-  "Path to emacs custom variables.")
+  "Path to Emacs custom variables.")
 
 (defvar fcuny/path-emacs-elpa (expand-file-name "elpa" fcuny/path-emacs-var)
   "Path to elpa's local files.")
@@ -19,3 +23,4 @@
     (expand-file-name "~/documents/notes/")))
 
 (provide 'fcuny-vars)
+;;; fcuny-vars.el ends here