Emacs and CMakeLists.txt administrivia

.editorconfig - specify CMakeLists.txt indentation
.gitignore - ignore emacs backups
tmp - like /tmp but specific to this project
This commit is contained in:
rocky 2019-04-11 12:21:07 -04:00
parent 826f2d9084
commit a0db46cd08
2 changed files with 11 additions and 0 deletions

View File

@ -17,3 +17,7 @@ indent_size = 4
[std/**.sol] [std/**.sol]
indent_style = space indent_style = space
indent_size = 4 indent_size = 4
[*.{txt,cmake}]
indent_style = tab
indent_size = 4

7
.gitignore vendored
View File

@ -32,6 +32,7 @@ prerelease.txt
# Build directory # Build directory
build/ build/
build*/
emscripten_build/ emscripten_build/
docs/_build docs/_build
docs/utils/__pycache__ docs/utils/__pycache__
@ -44,6 +45,9 @@ deps/cache
[._]*.sw[a-p] [._]*.sw[a-p]
[._]sw[a-p] [._]sw[a-p]
# emacs stuff
*~
# IDE files # IDE files
.idea .idea
.vscode .vscode
@ -53,3 +57,6 @@ CMakeLists.txt.user
/.vs /.vs
/.cproject /.cproject
/.project /.project
# place to put local temporary files
tmp