neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

.gitignore (1293B)


      1 # Tools
      2 /.direnv/
      3 /venv/
      4 compile_commands.json
      5 /.envrc
      6 
      7 # IDEs
      8 /.vs/
      9 /.vscode/
     10 /.idea/
     11 .nvimrc
     12 .exrc
     13 .nvim.lua
     14 
     15 # Build/deps dir
     16 /.zig-cache/
     17 /zig-out/
     18 /.deps/
     19 /tmp/
     20 /.clangd/
     21 /.cache/clangd/
     22 /.ccls-cache/
     23 /.clang-tidy
     24 
     25 .DS_Store
     26 *.mo
     27 .*.sw?
     28 *~
     29 *.pyc
     30 *.o
     31 *.so
     32 
     33 /src/nvim/po/vim.pot
     34 /src/nvim/po/*.ck
     35 
     36 # Generated by scripts/vim-patch.sh
     37 /.vim-src
     38 *.rej
     39 
     40 # Generated by old (Vim) tests.
     41 /test/old/testdir/del
     42 /test/old/testdir/test*.out
     43 /test/old/testdir/test*.res
     44 /test/old/testdir/test*.log
     45 /test/old/testdir/messages
     46 /test/old/testdir/starttime
     47 /test/old/testdir/viminfo
     48 /test/old/testdir/opt_test.vim
     49 /test/old/testdir/test.ok
     50 /test/old/testdir/*.failed
     51 /test/old/testdir/X*
     52 /test/old/testdir/valgrind.*
     53 /test/old/testdir/.gdbinit
     54 /runtime/indent/testdir/*.out
     55 +runtime/indent/testdir/*.fail
     56 # Generated by test/old/testdir/runnvim.sh.
     57 /test/old/testdir/*.tlog
     58 
     59 # Generated by unit tests.
     60 /test/includes/post/
     61 
     62 # Generated by luacheck during `make lualint'
     63 .luacheckcache
     64 
     65 # local make targets
     66 local.mk
     67 
     68 # Generated from :help docs
     69 tags
     70 /runtime/doc/*.html
     71 /runtime/doc/tags.ref
     72 /runtime/doc/errors.log
     73 
     74 # Generated by gen_vimdoc.py:
     75 /runtime/doc/*.mpack
     76 /tmp-*-doc
     77 
     78 # vim patches
     79 /vim-*.patch
     80 
     81 # nix build results
     82 /result
     83 /result-*
     84 /contrib/result
     85 /contrib/result-*
     86 
     87 CMakeUserPresets.json