forked from jonashaag/bjoern
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add better support for Emacs editing of bjoern
This change adds a .dir-locals.el file to make Emacs correctly indent bjoern source code, and ignores Emacs temporary files in the .gitignore file. These changes should be transparent to non-Emacs users.
- Loading branch information
Showing
2 changed files
with
6 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
;; For Emacs users, this will ensure that Emacs uses two-space indents for all | ||
;; of the files in the bjoern project. | ||
((nil . ((indent-tabs-mode . nil) | ||
(tab-width . 2) | ||
(c-basic-offset . 2)))) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
*.pyc | ||
*~ | ||
build/ | ||
dist/ | ||
MANIFEST |