Files
avante.nvim/.gitignore
Joseph b2064a8f40 Fix has_permissions_to_access when file is not ignored but patter is a substring (#2011)
Co-authored-by: pre-commit-ci-lite[bot] <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com>
2025-05-08 01:43:43 +08:00

52 lines
806 B
Plaintext

# Lua compiled files
*.lua~
*.luac
.venv
__pycache__/
data/
# Neovim plugin specific files
plugin/packer_compiled.lua
# OS generated files
.DS_Store
Thumbs.db
# Editor/IDE generated files
*.swp
*.swo
*~
.vscode/
.idea/
# Dependency manager generated directories
/lua_modules/
/.luarocks/
# Log files
*.log
# Temporary files
tmp/
temp/
# Environment variable files (if you use .env file to store API keys)
.env
.envrc
# If you use any build tools, you might need to ignore build output directories
build/
dist/
# If you use any test frameworks, you might need to ignore test coverage reports
coverage/
# If you use documentation generation tools, you might need to ignore generated docs
doc/
# If you have any personal configuration files, you should ignore them too
config.personal.lua
target