diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2023-09-28 16:28:22 +0100 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2023-09-28 16:28:53 +0100 |
commit | b71068309b7b5041fc48ec37ea23ff1b759b7d76 (patch) | |
tree | d914bf5cfa6769372c39894da2f4e9925cdb8750 /Emacs/.config/emacs/config.org | |
parent | 92d0d9dc1cb61f3ae60320ddb01d243af5bc572d (diff) | |
download | dotfiles-b71068309b7b5041fc48ec37ea23ff1b759b7d76.tar.gz dotfiles-b71068309b7b5041fc48ec37ea23ff1b759b7d76.tar.bz2 dotfiles-b71068309b7b5041fc48ec37ea23ff1b759b7d76.zip |
(Emacs)~setup licensing as early as possible
This is so I can use it later on.
Diffstat (limited to 'Emacs/.config/emacs/config.org')
-rw-r--r-- | Emacs/.config/emacs/config.org | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/Emacs/.config/emacs/config.org b/Emacs/.config/emacs/config.org index b16c13b..14eefe4 100644 --- a/Emacs/.config/emacs/config.org +++ b/Emacs/.config/emacs/config.org @@ -1117,6 +1117,19 @@ all snippets I've got. :config (yas-load-directory (no-littering-expand-etc-file-name "yasnippet/snippets"))) #+end_src +** Licensing +Loads [[file:elisp/license.el][license.el]] for inserting licenses. +Licenses are important for distribution and attribution to be defined clearly. +#+begin_src emacs-lisp +(use-package license + :straight nil + :load-path "elisp/" + :demand t + :general + (insert-leader + "l" #'+license/insert-copyright-notice + "L" #'+license/insert-complete-license)) +#+end_src * Small packages ** ISearch ISearch is the default incremental search application in Emacs. I use @@ -2327,18 +2340,6 @@ keymaps. "[" #'le-thesaurus-get-synonyms "]" #'le-thesaurus-get-antonyms)) #+end_src -** Licensing -Loads [[file:elisp/license.el][license.el]] for inserting licenses. -#+begin_src emacs-lisp -(use-package license - :straight nil - :load-path "elisp/" - :defer t - :general - (insert-leader - "l" #'+license/insert-copyright-notice - "L" #'+license/insert-complete-license)) -#+end_src * Programming packages Packages that help with programming in general, providing IDE like capabilities. |