Sfoglia il codice sorgente

Workspace-local package.

Now I have a place where to hide work-related stuff, nice.
Eiyeron Fulmicendii 1 anno fa
parent
commit
88c71c49f2
2 ha cambiato i file con 24 aggiunte e 0 eliminazioni
  1. 12 0
      config.org
  2. 12 0
      lisp/work/work.el

+ 12 - 0
config.org

@@ -108,6 +108,14 @@ What remains is adding a way to detect the needed executables in the PATH.
 #+begin_src emacs-lisp
 (package! valign :recipe (:host github :repo "casouri/valign" :branch "master"))
 #+end_src
+*** Work package
+For workplace-local modifications
+#+begin_src emacs-lisp
+(package! work
+  :recipe (:local-repo "lisp/work"))
+
+#+END_SRC
+
 * TODO Config variables to make stuff easily tweakable
 * Helper functions
 I had issues before dealing with specific patterns at configuration time. At
@@ -997,3 +1005,7 @@ But again, the FAQ suggests using hooks to limit the tweak to specific modes.
   (python-mode pico8-mode lua-mode markdown-mode)
   #'chicken/alter-underscore-entry)
 #+END_SRC
+* Work-local changes
+#+BEGIN_SRC emacs-lisp
+(use-package! work)
+#+END_SRC

+ 12 - 0
lisp/work/work.el

@@ -0,0 +1,12 @@
+;;; work.el --- Chicken's local work stuff                     -*- lexical-binding: t; -*-
+
+
+;;; Commentary:
+
+;; Put a description of the package here
+
+;;; Code:
+
+
+(provide 'work)
+;;; work.el ends here