commit
cf518de8cd
@ -0,0 +1,104 @@
|
||||
;; Per-directory local variables for GNU Emacs 23 and later.
|
||||
|
||||
((nil
|
||||
. ((fill-column . 78)
|
||||
(tab-width . 8)
|
||||
(sentence-end-double-space . t)
|
||||
(ispell-check-comments . exclusive)
|
||||
(ispell-local-dictionary . "american")
|
||||
(safe-local-variable-values
|
||||
(eval add-hook 'prog-mode-hook #'flyspell-prog-mode)
|
||||
(flyspell-issue-message-flag . f)) ; avoid messages for every word
|
||||
|
||||
;; For use with 'bug-reference-prog-mode'.
|
||||
(bug-reference-url-format . "https://gitlab.digitalcourage.de/htgoebel/pep4guix/issues/%s")
|
||||
(bug-reference-bug-regexp
|
||||
. "#[0-9]+")))
|
||||
(c-mode . ((c-file-style . "gnu")))
|
||||
(scheme-mode
|
||||
.
|
||||
((indent-tabs-mode . nil)
|
||||
(eval . (put 'eval-when 'scheme-indent-function 1))
|
||||
(eval . (put 'call-with-prompt 'scheme-indent-function 1))
|
||||
(eval . (put 'test-assert 'scheme-indent-function 1))
|
||||
(eval . (put 'test-assertm 'scheme-indent-function 1))
|
||||
(eval . (put 'test-equalm 'scheme-indent-function 1))
|
||||
(eval . (put 'test-equal 'scheme-indent-function 1))
|
||||
(eval . (put 'test-eq 'scheme-indent-function 1))
|
||||
(eval . (put 'call-with-input-string 'scheme-indent-function 1))
|
||||
(eval . (put 'guard 'scheme-indent-function 1))
|
||||
(eval . (put 'lambda* 'scheme-indent-function 1))
|
||||
(eval . (put 'substitute* 'scheme-indent-function 1))
|
||||
(eval . (put 'match-record 'scheme-indent-function 2))
|
||||
|
||||
;; 'modify-phases' and its keywords.
|
||||
(eval . (put 'modify-phases 'scheme-indent-function 1))
|
||||
(eval . (put 'replace 'scheme-indent-function 1))
|
||||
(eval . (put 'add-before 'scheme-indent-function 2))
|
||||
(eval . (put 'add-after 'scheme-indent-function 2))
|
||||
|
||||
(eval . (put 'modify-services 'scheme-indent-function 1))
|
||||
(eval . (put 'with-directory-excursion 'scheme-indent-function 1))
|
||||
(eval . (put 'package 'scheme-indent-function 0))
|
||||
(eval . (put 'origin 'scheme-indent-function 0))
|
||||
(eval . (put 'build-system 'scheme-indent-function 0))
|
||||
(eval . (put 'bag 'scheme-indent-function 0))
|
||||
(eval . (put 'graft 'scheme-indent-function 0))
|
||||
(eval . (put 'operating-system 'scheme-indent-function 0))
|
||||
(eval . (put 'file-system 'scheme-indent-function 0))
|
||||
(eval . (put 'manifest-entry 'scheme-indent-function 0))
|
||||
(eval . (put 'manifest-pattern 'scheme-indent-function 0))
|
||||
(eval . (put 'substitute-keyword-arguments 'scheme-indent-function 1))
|
||||
(eval . (put 'with-store 'scheme-indent-function 1))
|
||||
(eval . (put 'with-external-store 'scheme-indent-function 1))
|
||||
(eval . (put 'with-error-handling 'scheme-indent-function 0))
|
||||
(eval . (put 'with-mutex 'scheme-indent-function 1))
|
||||
(eval . (put 'with-atomic-file-output 'scheme-indent-function 1))
|
||||
(eval . (put 'call-with-compressed-output-port 'scheme-indent-function 2))
|
||||
(eval . (put 'call-with-decompressed-port 'scheme-indent-function 2))
|
||||
(eval . (put 'call-with-gzip-input-port 'scheme-indent-function 1))
|
||||
(eval . (put 'call-with-gzip-output-port 'scheme-indent-function 1))
|
||||
(eval . (put 'call-with-lzip-input-port 'scheme-indent-function 1))
|
||||
(eval . (put 'call-with-lzip-output-port 'scheme-indent-function 1))
|
||||
(eval . (put 'signature-case 'scheme-indent-function 1))
|
||||
(eval . (put 'emacs-batch-eval 'scheme-indent-function 0))
|
||||
(eval . (put 'emacs-batch-edit-file 'scheme-indent-function 1))
|
||||
(eval . (put 'emacs-substitute-sexps 'scheme-indent-function 1))
|
||||
(eval . (put 'emacs-substitute-variables 'scheme-indent-function 1))
|
||||
(eval . (put 'with-derivation-narinfo 'scheme-indent-function 1))
|
||||
(eval . (put 'with-derivation-substitute 'scheme-indent-function 2))
|
||||
(eval . (put 'with-status-report 'scheme-indent-function 1))
|
||||
(eval . (put 'with-status-verbosity 'scheme-indent-function 1))
|
||||
|
||||
(eval . (put 'mlambda 'scheme-indent-function 1))
|
||||
(eval . (put 'mlambdaq 'scheme-indent-function 1))
|
||||
(eval . (put 'syntax-parameterize 'scheme-indent-function 1))
|
||||
(eval . (put 'with-monad 'scheme-indent-function 1))
|
||||
(eval . (put 'mbegin 'scheme-indent-function 1))
|
||||
(eval . (put 'mwhen 'scheme-indent-function 1))
|
||||
(eval . (put 'munless 'scheme-indent-function 1))
|
||||
(eval . (put 'mlet* 'scheme-indent-function 2))
|
||||
(eval . (put 'mlet 'scheme-indent-function 2))
|
||||
(eval . (put 'run-with-store 'scheme-indent-function 1))
|
||||
(eval . (put 'run-with-state 'scheme-indent-function 1))
|
||||
(eval . (put 'wrap-program 'scheme-indent-function 1))
|
||||
(eval . (put 'with-imported-modules 'scheme-indent-function 1))
|
||||
(eval . (put 'with-extensions 'scheme-indent-function 1))
|
||||
|
||||
(eval . (put 'with-database 'scheme-indent-function 2))
|
||||
(eval . (put 'call-with-transaction 'scheme-indent-function 2))
|
||||
|
||||
(eval . (put 'call-with-container 'scheme-indent-function 1))
|
||||
(eval . (put 'container-excursion 'scheme-indent-function 1))
|
||||
(eval . (put 'eventually 'scheme-indent-function 1))
|
||||
|
||||
(eval . (put 'call-with-progress-reporter 'scheme-indent-function 1))
|
||||
|
||||
;; This notably allows '(' in Paredit to not insert a space when the
|
||||
;; preceding symbol is one of these.
|
||||
(eval . (modify-syntax-entry ?~ "'"))
|
||||
(eval . (modify-syntax-entry ?$ "'"))
|
||||
(eval . (modify-syntax-entry ?+ "'"))))
|
||||
(emacs-lisp-mode . ((indent-tabs-mode . nil)))
|
||||
(texinfo-mode . ((indent-tabs-mode . nil)
|
||||
(fill-column . 72))))
|
@ -0,0 +1,29 @@
|
||||
*.go
|
||||
*.tmp
|
||||
*~
|
||||
.#*
|
||||
\#*\#
|
||||
,*
|
||||
/tmp
|
||||
/.dir-locals-2.el
|
||||
|
||||
*.py[co]
|
||||
__pycache__/
|
||||
/*.egg
|
||||
/*.egg-info/
|
||||
/*.egg-link
|
||||
/.eggs/
|
||||
/.pytest_cache/
|
||||
|
||||
# Temporary files and Editor settings
|
||||
*.swp
|
||||
.ropeproject
|
||||
.idea
|
||||
.spyproject
|
||||
.DS_store
|
||||
*.pdb
|
||||
.cache
|
||||
*.prof
|
||||
|
||||
# Python virtual environments
|
||||
/_venv
|
@ -0,0 +1,42 @@
|
||||
p≡p 4 Guix
|
||||
===============
|
||||
|
||||
*p≡p 4 Guix* is a software repository for the
|
||||
[GNU Guix](https://www.gnu.org/software/guix/) package manager,
|
||||
which packages pretty Easy privacy (p≡p).
|
||||
|
||||
Warning
|
||||
-------------
|
||||
|
||||
This is a contributed channel, not an offical one.
|
||||
|
||||
Installation
|
||||
-------------
|
||||
|
||||
*p≡p 4 Guix* can be installed as a
|
||||
[Guix channel](https://www.gnu.org/software/guix/manual/en/html_node/Channels.html).
|
||||
To do so, add it to `~/.config/guix/channels.scm`:
|
||||
|
||||
```
|
||||
(cons* (channel
|
||||
(name 'pEp4guix)
|
||||
(url "https://gitlab.digitalcourage.de/htgoebel/pep4guix")
|
||||
(branch "master")
|
||||
%default-channels))
|
||||
```
|
||||
|
||||
Contributing
|
||||
-------------
|
||||
|
||||
Contributions are welcome! If there's a package you would like to add,
|
||||
just fork the repository and create a Merge Request when your package
|
||||
is ready. Keep in mind:
|
||||
|
||||
* p≡p 4 Guix follows the same
|
||||
[coding style](https://www.gnu.org/software/guix/manual/en/html_node/Coding-Style.html)
|
||||
as GNU Guix. If you don't use Emacs, you should make use of the indent
|
||||
script from the GNU Guix repository (`./etc/indent-code.el`).
|
||||
|
||||
* Commit messages should follow the same
|
||||
[conventions](https://www.gnu.org/prep/standards/html_node/Change-Logs.html)
|
||||
set by GNU Guix.
|
After Width: | Height: | Size: 5.2 KiB |
Loading…
Reference in new issue