diff options
| -rw-r--r-- | .dir-locals.el | 125 | ||||
| -rw-r--r-- | .gitignore | 2 | 
2 files changed, 127 insertions, 0 deletions
diff --git a/.dir-locals.el b/.dir-locals.el new file mode 100644 index 0000000..9329312 --- /dev/null +++ b/.dir-locals.el  | |||
| @@ -0,0 +1,125 @@ | |||
| 1 | ;; Per-directory local variables for GNU Emacs 23 and later. | ||
| 2 | |||
| 3 | ((nil | ||
| 4 | . ((fill-column . 78) | ||
| 5 | (sentence-end-double-space . t) | ||
| 6 | ;; (guix-current-profile . ) ;; TODO: Wpisac by wsakzywalo na ./guix/etc/profile | ||
| 7 | )) | ||
| 8 | |||
| 9 | (scheme-mode | ||
| 10 | . | ||
| 11 | ((indent-tabs-mode . nil) | ||
| 12 | (eval . (put 'with-eval-after-load 'scheme-indent-function 1)) | ||
| 13 | |||
| 14 | (eval . (put 'eval-when 'scheme-indent-function 1)) | ||
| 15 | (eval . (put 'call-with-prompt 'scheme-indent-function 1)) | ||
| 16 | (eval . (put 'test-assert 'scheme-indent-function 1)) | ||
| 17 | (eval . (put 'test-assertm 'scheme-indent-function 1)) | ||
| 18 | (eval . (put 'test-equalm 'scheme-indent-function 1)) | ||
| 19 | (eval . (put 'test-equal 'scheme-indent-function 1)) | ||
| 20 | (eval . (put 'test-eq 'scheme-indent-function 1)) | ||
| 21 | (eval . (put 'call-with-input-string 'scheme-indent-function 1)) | ||
| 22 | (eval . (put 'guard 'scheme-indent-function 1)) | ||
| 23 | (eval . (put 'lambda* 'scheme-indent-function 1)) | ||
| 24 | (eval . (put 'substitute* 'scheme-indent-function 1)) | ||
| 25 | (eval . (put 'match-record 'scheme-indent-function 2)) | ||
| 26 | |||
| 27 | ;; 'modify-inputs' and its keywords. | ||
| 28 | (eval . (put 'modify-inputs 'scheme-indent-function 1)) | ||
| 29 | (eval . (put 'replace 'scheme-indent-function 1)) | ||
| 30 | |||
| 31 | ;; 'modify-phases' and its keywords. | ||
| 32 | (eval . (put 'modify-phases 'scheme-indent-function 1)) | ||
| 33 | (eval . (put 'replace 'scheme-indent-function 1)) | ||
| 34 | (eval . (put 'add-before 'scheme-indent-function 2)) | ||
| 35 | (eval . (put 'add-after 'scheme-indent-function 2)) | ||
| 36 | |||
| 37 | (eval . (put 'modify-services 'scheme-indent-function 1)) | ||
| 38 | (eval . (put 'with-directory-excursion 'scheme-indent-function 1)) | ||
| 39 | (eval . (put 'with-file-lock 'scheme-indent-function 1)) | ||
| 40 | (eval . (put 'with-file-lock/no-wait 'scheme-indent-function 1)) | ||
| 41 | (eval . (put 'with-profile-lock 'scheme-indent-function 1)) | ||
| 42 | (eval . (put 'with-writable-file 'scheme-indent-function 2)) | ||
| 43 | |||
| 44 | (eval . (put 'package 'scheme-indent-function 0)) | ||
| 45 | (eval . (put 'package/inherit 'scheme-indent-function 1)) | ||
| 46 | (eval . (put 'origin 'scheme-indent-function 0)) | ||
| 47 | (eval . (put 'build-system 'scheme-indent-function 0)) | ||
| 48 | (eval . (put 'bag 'scheme-indent-function 0)) | ||
| 49 | (eval . (put 'gexp->derivation 'scheme-indent-function 1)) | ||
| 50 | (eval . (put 'graft 'scheme-indent-function 0)) | ||
| 51 | (eval . (put 'operating-system 'scheme-indent-function 0)) | ||
| 52 | (eval . (put 'file-system 'scheme-indent-function 0)) | ||
| 53 | (eval . (put 'manifest-entry 'scheme-indent-function 0)) | ||
| 54 | (eval . (put 'manifest-pattern 'scheme-indent-function 0)) | ||
| 55 | (eval . (put 'substitute-keyword-arguments 'scheme-indent-function 1)) | ||
| 56 | (eval . (put 'with-store 'scheme-indent-function 1)) | ||
| 57 | (eval . (put 'with-external-store 'scheme-indent-function 1)) | ||
| 58 | (eval . (put 'with-error-handling 'scheme-indent-function 0)) | ||
| 59 | (eval . (put 'with-mutex 'scheme-indent-function 1)) | ||
| 60 | (eval . (put 'with-atomic-file-output 'scheme-indent-function 1)) | ||
| 61 | (eval . (put 'call-with-compressed-output-port 'scheme-indent-function 2)) | ||
| 62 | (eval . (put 'call-with-decompressed-port 'scheme-indent-function 2)) | ||
| 63 | (eval . (put 'call-with-gzip-input-port 'scheme-indent-function 1)) | ||
| 64 | (eval . (put 'call-with-gzip-output-port 'scheme-indent-function 1)) | ||
| 65 | (eval . (put 'call-with-lzip-input-port 'scheme-indent-function 1)) | ||
| 66 | (eval . (put 'call-with-lzip-output-port 'scheme-indent-function 1)) | ||
| 67 | (eval . (put 'signature-case 'scheme-indent-function 1)) | ||
| 68 | (eval . (put 'emacs-batch-eval 'scheme-indent-function 0)) | ||
| 69 | (eval . (put 'emacs-batch-edit-file 'scheme-indent-function 1)) | ||
| 70 | (eval . (put 'emacs-substitute-sexps 'scheme-indent-function 1)) | ||
| 71 | (eval . (put 'emacs-substitute-variables 'scheme-indent-function 1)) | ||
| 72 | (eval . (put 'with-derivation-narinfo 'scheme-indent-function 1)) | ||
| 73 | (eval . (put 'with-derivation-substitute 'scheme-indent-function 2)) | ||
| 74 | (eval . (put 'with-status-report 'scheme-indent-function 1)) | ||
| 75 | (eval . (put 'with-status-verbosity 'scheme-indent-function 1)) | ||
| 76 | (eval . (put 'with-build-handler 'scheme-indent-function 1)) | ||
| 77 | |||
| 78 | (eval . (put 'mlambda 'scheme-indent-function 1)) | ||
| 79 | (eval . (put 'mlambdaq 'scheme-indent-function 1)) | ||
| 80 | (eval . (put 'syntax-parameterize 'scheme-indent-function 1)) | ||
| 81 | (eval . (put 'with-monad 'scheme-indent-function 1)) | ||
| 82 | (eval . (put 'mbegin 'scheme-indent-function 1)) | ||
| 83 | (eval . (put 'mwhen 'scheme-indent-function 1)) | ||
| 84 | (eval . (put 'munless 'scheme-indent-function 1)) | ||
| 85 | (eval . (put 'mlet* 'scheme-indent-function 2)) | ||
| 86 | (eval . (put 'mlet 'scheme-indent-function 2)) | ||
| 87 | (eval . (put 'run-with-store 'scheme-indent-function 1)) | ||
| 88 | (eval . (put 'run-with-state 'scheme-indent-function 1)) | ||
| 89 | (eval . (put 'wrap-program 'scheme-indent-function 1)) | ||
| 90 | (eval . (put 'with-imported-modules 'scheme-indent-function 1)) | ||
| 91 | (eval . (put 'with-extensions 'scheme-indent-function 1)) | ||
| 92 | (eval . (put 'with-parameters 'scheme-indent-function 1)) | ||
| 93 | (eval . (put 'let-system 'scheme-indent-function 1)) | ||
| 94 | (eval . (put 'with-build-variables 'scheme-indent-function 2)) | ||
| 95 | |||
| 96 | (eval . (put 'with-database 'scheme-indent-function 2)) | ||
| 97 | (eval . (put 'call-with-database 'scheme-indent-function 1)) | ||
| 98 | (eval . (put 'call-with-transaction 'scheme-indent-function 1)) | ||
| 99 | (eval . (put 'with-statement 'scheme-indent-function 3)) | ||
| 100 | (eval . (put 'call-with-retrying-transaction 'scheme-indent-function 1)) | ||
| 101 | (eval . (put 'call-with-savepoint 'scheme-indent-function 1)) | ||
| 102 | (eval . (put 'call-with-retrying-savepoint 'scheme-indent-function 1)) | ||
| 103 | |||
| 104 | (eval . (put 'call-with-container 'scheme-indent-function 1)) | ||
| 105 | (eval . (put 'container-excursion 'scheme-indent-function 1)) | ||
| 106 | (eval . (put 'eventually 'scheme-indent-function 1)) | ||
| 107 | |||
| 108 | (eval . (put 'call-with-progress-reporter 'scheme-indent-function 1)) | ||
| 109 | (eval . (put 'with-repository 'scheme-indent-function 2)) | ||
| 110 | (eval . (put 'with-temporary-git-repository 'scheme-indent-function 2)) | ||
| 111 | (eval . (put 'with-environment-variables 'scheme-indent-function 1)) | ||
| 112 | (eval . (put 'with-fresh-gnupg-setup 'scheme-indent-function 1)) | ||
| 113 | |||
| 114 | (eval . (put 'with-paginated-output-port 'scheme-indent-function 1)) | ||
| 115 | |||
| 116 | (eval . (put 'with-shepherd-action 'scheme-indent-function 3)) | ||
| 117 | |||
| 118 | ;; This notably allows '(' in Paredit to not insert a space when the | ||
| 119 | ;; preceding symbol is one of these. | ||
| 120 | (eval . (modify-syntax-entry ?~ "'")) | ||
| 121 | (eval . (modify-syntax-entry ?$ "'")) | ||
| 122 | (eval . (modify-syntax-entry ?+ "'")))) | ||
| 123 | (emacs-lisp-mode . ((indent-tabs-mode . nil))) | ||
| 124 | (texinfo-mode . ((indent-tabs-mode . nil) | ||
| 125 | (fill-column . 72)))) | ||
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0237959 --- /dev/null +++ b/.gitignore  | |||
| @@ -0,0 +1,2 @@ | |||
| 1 | .nrepl-port | ||
| 2 | guix | ||
