# editor_config **Repository Path**: 1160/editor_config ## Basic Information - **Project Name**: editor_config - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2023-07-18 - **Last Updated**: 2023-07-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README vim配置需要一些依赖组件 1.ag ubuntu `sudo apt install silversearcher-ag` mac `brew insstall the_silver_searcher` 2.highlight ubuntu `sudo apt install highlight` mac `brew install highlight` 3.tree ubuntu `sudo apt install install tree` mac `brew install tree` 4.tmux ubuntu `sudo apt install install tmux` mac `brew install tmux` 5.node ubuntu `sudo apt install npm` mac `brew install node` 6.ctags utuntu `sudo apt install universal-ctags` mac `brew install universal-ctags` 7.ripgrep utuntu `sudo apt install ripgrep` mac `brew install ripgrep` 8.pynvim ubuntu mac `pip3 install --user --upgrade pynvim` unity3d 配置格式 .vimspector.json `{ "$schema": "https://puremourning.github.io/vimspector/schema/vimspector.schema.json#", "configurations": { "UntiyDebug": { "adapter": "unity_debug", "configuration":{ "type": "unity_debug", "request": "attach", "name": "Unity Editor", "cwd": "${workspaceFolder}", "path": "${workspaceFolder}/Library/EditorInstance.json" } } } }` vimspector插件.gadgets.json添加 ` "unity_debug": { "command": [ "node", "~/.vim/plug/vim-unity-debug/js/UnityDebugAdapter.js" ], "configuration": { "extensionPath": "~/.vscode/extensions/unity.unity-debug-3.0.2" }, "name": "unity_debug" },` vim-unity-debug插件下的`UnityDebugAdapter.js` `UnityDebugAdapter.ts`要把`extensionPath`路径改为uniity-debug的路径