|
@@ -1,5 +1,69 @@
|
|
|
{
|
|
|
- "prettier.singleQuote": true,
|
|
|
- "prettier.trailingComma": "all",
|
|
|
- "prettier.bracketSpacing": false
|
|
|
+ "hover.floatConfig": { "border": true, "rounded": true, "focusable": true },
|
|
|
+ "suggest.floatConfig": { "border": true, "rounded": true },
|
|
|
+ "diagnostic.floatConfig": { "border": true, "rounded": true },
|
|
|
+ "signature.floatConfig": { "border": true, "rounded": true },
|
|
|
+ "list.autoPreview": true,
|
|
|
+ "outline.autoPreview": true,
|
|
|
+ "git.floatConfig": { "border": true, "rounded": true },
|
|
|
+ "notification.disabledProgressSources": ["*"],
|
|
|
+ "diagnostic.signOffset": 1,
|
|
|
+ "diagnostic.errorSign": "┃",
|
|
|
+ "diagnostic.warningSign": "┃",
|
|
|
+ "diagnostic.infoSign": "┃",
|
|
|
+ "diagnostic.hintSign": "┃",
|
|
|
+ "inlayHint.enable": false,
|
|
|
+ "list.alignColumns": true,
|
|
|
+ "list.floatPreview": true,
|
|
|
+ "snippets.userSnippetsDirectory": "~/.config/nvim/snippets",
|
|
|
+ "snippets.ultisnips.directories": ["~/.config/nvim/snippets/ultisnips"],
|
|
|
+ "snippets.extends.javascript": ["typescript"],
|
|
|
+ "tabnine.priority": 80,
|
|
|
+ "pairs.enableCharacters": ["(", "[", "{", "'", "\"", "`"],
|
|
|
+ "pairs.enableBackspace": true,
|
|
|
+ "translator.engines": ["youdao", "google"],
|
|
|
+ "tsserver.trace.server": "messages",
|
|
|
+ "tsserver.enableJavascript": true,
|
|
|
+ "tsserver.enable": false,
|
|
|
+ "volar.takeOverMode.enabled": true,
|
|
|
+ "volar.autoCreateQuotes": true,
|
|
|
+ "pyright.inlayHints.enable": false,
|
|
|
+ "git.addedSign.hlGroup": "GitGutterAdd",
|
|
|
+ "git.changedSign.hlGroup": "GitGutterChange",
|
|
|
+ "git.removedSign.hlGroup": "GitGutterDelete",
|
|
|
+ "git.topRemovedSign.hlGroup": "GitGutterDelete",
|
|
|
+ "git.changeRemovedSign.hlGroup": "GitGutterDelete",
|
|
|
+ "git.changedSign.text": "┃",
|
|
|
+ "git.addedSign.text": "┃",
|
|
|
+ "git.removedSign.text": "▁",
|
|
|
+ "git.topRemovedSign.text": "▔",
|
|
|
+ "git.changeRemovedSign.text": "≃",
|
|
|
+ "git.branchCharacter": "",
|
|
|
+ "git.showCommitInFloating": true,
|
|
|
+ "git.addGBlameToVirtualText": false,
|
|
|
+ "git.addGBlameToBufferVar": true,
|
|
|
+ "git.splitWindowCommand": "below 10sp",
|
|
|
+ "java.clean.workspace": true,
|
|
|
+ "java.configuration.runtimes": [
|
|
|
+ {
|
|
|
+ "name": "JavaSE-14",
|
|
|
+ "path": "/opt/jdk-14.0.2",
|
|
|
+ "default": true
|
|
|
+ }
|
|
|
+ ],
|
|
|
+ "clangd.path": "~/.config/coc/extensions/coc-clangd-data/install/15.0.6/clangd_15.0.6/bin/clangd",
|
|
|
+ "prettier": {
|
|
|
+ "tabWidth": 4,
|
|
|
+ "printWidth": 160,
|
|
|
+ "singleQuote": true,
|
|
|
+ "disableSuccessMessage": true,
|
|
|
+ "formatterPriority": 999
|
|
|
+ },
|
|
|
+ "go.goplsOptions": {
|
|
|
+ "completeUnimported": true,
|
|
|
+ "staticcheck": true
|
|
|
+ },
|
|
|
+ "git.enableGutters": true,
|
|
|
+ "Lua.telemetry.enable": true,
|
|
|
+ "@nomicfoundation/coc-solidity.telemetry": true
|
|
|
}
|