.gitignore 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. # Tools
  2. /venv/
  3. compile_commands.json
  4. /.luarc.json
  5. # IDEs
  6. /.vs/
  7. /.vscode/
  8. /.idea/
  9. # Build/deps dir
  10. /build/
  11. /.deps/
  12. /tmp/
  13. /.clangd/
  14. /.cache/clangd/
  15. /.ccls-cache/
  16. /.clang-tidy
  17. .DS_Store
  18. *.mo
  19. .*.sw?
  20. *~
  21. *.pyc
  22. *.o
  23. *.so
  24. /src/nvim/po/vim.pot
  25. /src/nvim/po/*.ck
  26. # Generated by tests with $NVIM_LOG_FILE set.
  27. /.nvimlog
  28. # Generated by scripts/vim-patch.sh
  29. /.vim-src
  30. *.rej
  31. # Generated by old (Vim) tests.
  32. /src/nvim/testdir/del
  33. /src/nvim/testdir/test*.out
  34. /src/nvim/testdir/test*.res
  35. /src/nvim/testdir/test*.log
  36. /src/nvim/testdir/messages
  37. /src/nvim/testdir/viminfo
  38. /src/nvim/testdir/test.ok
  39. /src/nvim/testdir/*.failed
  40. /src/nvim/testdir/X*
  41. /src/nvim/testdir/valgrind.*
  42. /src/nvim/testdir/.gdbinit
  43. /runtime/indent/testdir/*.out
  44. +runtime/indent/testdir/*.fail
  45. # Generated by src/nvim/testdir/runnvim.sh.
  46. /src/nvim/testdir/*.tlog
  47. # Generated by unit tests.
  48. /test/includes/post/
  49. # Generated by luacheck during `make lualint'
  50. .luacheckcache
  51. # local make targets
  52. local.mk
  53. # Generated from :help docs
  54. tags
  55. /runtime/doc/*.html
  56. /runtime/doc/tags.ref
  57. /runtime/doc/errors.log
  58. # Generated by gen_vimdoc.py:
  59. /runtime/doc/*.mpack
  60. /tmp-*-doc
  61. # vim patches
  62. /vim-*.patch