merchant

Merchant backend to process payments, run by merchants
Log | Files | Refs | Submodules | README | LICENSE

commit f981076f64d11bd7c14903a7be4664012de2444f
parent 5532fdfdd1bc986afc5d52e9ba909b826afbb86e
Author: Hartmut Goebel <h.goebel@crazy-compilers.com>
Date:   Fri, 15 Mar 2019 21:03:35 +0100

Add a .dir-locals,el for configuring emacs for this project

Diffstat:
A.dir-locals.el | 16++++++++++++++++
1 file changed, 16 insertions(+), 0 deletions(-)

diff --git a/.dir-locals.el b/.dir-locals.el @@ -0,0 +1,16 @@ +;; Per-directory local variables for GNU Emacs 23 and later. + +((nil + . ((fill-column . 78) + (tab-width . 4) + (indent-tabs-mode . nil) + (show-trailing-whitespace . t) + (c-basic-offset . 2) + (ispell-check-comments . exclusive) + (ispell-local-dictionary . "american") + (safe-local-variable-values + '((c-default-style . "gnu") + (sentence-end-double-space . f) + (eval add-hook 'prog-mode-hook #'flyspell-prog-mode) + (flyspell-issue-message-flag . f) ; avoid messages for every word + )))))