Skip to content

Instantly share code, notes, and snippets.

@unitycoder
Created November 6, 2025 20:33
Show Gist options
  • Save unitycoder/8f093e4e23950772465ab86e4bf76f30 to your computer and use it in GitHub Desktop.
Save unitycoder/8f093e4e23950772465ab86e4bf76f30 to your computer and use it in GitHub Desktop.
Disable Unity Editor Indexing Service
// https://discussions.unity.com/t/how-to-disable-searcher-in-6-4/1693707/6
// You can disable indexing of assets for advance search (this is what is crashing) by modifyin the UserSettings/Search.index file in your project:
{
"name": "Assets",
"type": "asset",
"roots": [
],
"includes": [],
"excludes": [
"Assets/Temp/",
"Assets/External/",
"Temp/"
],
"options": {
"disabled": false,
"types": true,
"properties": true,
"extended": true,
"dependencies": true
},
"baseScore": 999
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment