.gitignore 318 B

123456789101112131415161718192021222324252627282930313233
  1. *.swp
  2. *.gdb_history
  3. # LSP
  4. .cache
  5. compile_commands.json
  6. # JetBrains IDEs
  7. .idea/
  8. # Python VirtEnvironments
  9. .env
  10. .venv
  11. env/
  12. venv/
  13. # Python Byte-compiled / optimized files
  14. __pycache__/
  15. *.py[cod]
  16. *$py.class
  17. .obj/
  18. bindings/
  19. .DS_Store
  20. .mxproject
  21. # Visual Studio Code
  22. .vscode/
  23. # legendary cmake's
  24. build
  25. CMakeLists.txt