.gitignore 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. # Tools
  2. /.direnv/
  3. /venv/
  4. compile_commands.json
  5. /.envrc
  6. # IDEs
  7. /.vs/
  8. /.vscode/
  9. /.idea/
  10. # Build/deps dir
  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. /test/old/testdir/del
  33. /test/old/testdir/test*.out
  34. /test/old/testdir/test*.res
  35. /test/old/testdir/test*.log
  36. /test/old/testdir/messages
  37. /test/old/testdir/starttime
  38. /test/old/testdir/viminfo
  39. /test/old/testdir/opt_test.vim
  40. /test/old/testdir/test.ok
  41. /test/old/testdir/*.failed
  42. /test/old/testdir/X*
  43. /test/old/testdir/valgrind.*
  44. /test/old/testdir/.gdbinit
  45. /runtime/indent/testdir/*.out
  46. +runtime/indent/testdir/*.fail
  47. # Generated by test/old/testdir/runnvim.sh.
  48. /test/old/testdir/*.tlog
  49. # Generated by unit tests.
  50. /test/includes/post/
  51. # Generated by luacheck during `make lualint'
  52. .luacheckcache
  53. # local make targets
  54. local.mk
  55. # Generated from :help docs
  56. tags
  57. /runtime/doc/*.html
  58. /runtime/doc/tags.ref
  59. /runtime/doc/errors.log
  60. # Generated by gen_vimdoc.py:
  61. /runtime/doc/*.mpack
  62. /tmp-*-doc
  63. # vim patches
  64. /vim-*.patch
  65. # nix build results
  66. /result
  67. /result-*
  68. /contrib/result
  69. /contrib/result-*
  70. CMakeUserPresets.json