zoukankan      html  css  js  c++  java
  • vscode 配置

    {
        "workbench.colorCustomizations": {
            "minimap.selectionHighlight": "#bbff00",
            "minimap.findMatchHighlight": "#ff0000",
            "editor.selectionBackground": "#135564",
            "editor.selectionHighlightBackground": "#135564",
            "editor.findMatchBackground": "#c9af3ca8", //Current SEARCH MATCH
            "editor.findMatchHighlightBackground": "#ff7b00a1" //Other SEARCH MATCHES
        },
        "git.enableSmartCommit": true,
        "explorer.confirmDelete": false,
        "explorer.confirmDragAndDrop": false,
        "git.ignoreMissingGitWarning": true,
        "git.autofetch": true,
        "workbench.view.alwaysShowHeaderActions": true,
        "workbench.editor.highlightModifiedTabs": true,
        "workbench.editor.revealIfOpen": true,
        "workbench.editor.tabCloseButton": "right",
        "go.gopath": "/home/golang",
        "go.testTimeout": "60s",
        "diffEditor.renderSideBySide": true,
        "go.goroot": "/usr/local/go",
        "go.toolsEnvVars": {
            "GOPROXY": "https://goproxy.io,direct"
        },
        "go.testFlags": [
            "-v",
            "-count=1"
        ],
        "go.autocompleteUnimportedPackages": true,
        "workbench.tree.renderIndentGuides": "none",
        "http.proxyStrictSSL": false,
        "go.toolsManagement.checkForUpdates": "proxy",
        "plantuml.exportMapFile": true,
        "plantuml.render": "PlantUMLServer",
        "plantuml.server": "https://www.plantuml.com/plantuml",
        "go.lintOnSave": "off",
        "go.vetOnSave": "off",
        "go.useLanguageServer": true,
        "go.languageServerFlags": [
            "-rpc.trace" // for more detailed debug logging
        ],
        "[go]": {
            "editor.formatOnSave": true,
            "editor.codeActionsOnSave": {
                "source.organizeImports": false,
            },
            // Optional: Disable snippets, as they conflict with completion ranking.
            "editor.snippetSuggestions": "none",
        },
        "[go.mod]": {
            "editor.formatOnSave": true,
            "editor.codeActionsOnSave": {
                "source.organizeImports": false,
            },
        },
        "gopls": {
            // Add parameter placeholders when completing a function.
            "usePlaceholders": true,
            // If true, enable additional analyses with staticcheck.
            // Warning: This will significantly increase memory usage.
            "staticcheck": false,
            "buildFlags": [
                "-tags=wireinject"
            ],
            "experimentalWorkspaceModule": true,
        },
        "goModGrapher.engine": "dot",
        "editor.formatOnSave": true,
        "remote.autoForwardPortsSource": "output",
        "search.searchEditor.reusePriorSearchConfiguration": true,
        "search.exclude": {
            "**/*_test.go": true
        },
        "go.addTags": {
            "transform": "camelcase"
        },
        "python.defaultInterpreterPath": "python2",
        "python.formatting.provider": "black",
        "editor.autoIndent": "advanced",
        "[json]": {
            "editor.quickSuggestions": {
                "strings": true
            },
            "editor.suggest.insertMode": "replace",
            "gitlens.codeLens.scopes": [
                "document"
            ]
        },
        "workbench.colorTheme": "Monokai Pro",
        "workbench.iconTheme": "Monokai Pro Icons",
        "oneDarkPro.editorTheme": "One Dark Pro Flat",
        "markdown.preview.fontSize": 16,
        "editor.fontSize": 16,
        "editor.renderWhitespace": "none",
        "editor.fontFamily": "Monaco, Monaco, 'Monaco', monospace",
    }
  • 相关阅读:
    C# listbox鼠标选择改变改行颜色的另一种方便方法
    非专业码农 JAVA学习笔记 4 java继承和多态
    转:Java学习笔记之方法重载,动态方法调度和抽象类
    非专业码农 JAVA学习笔记 3 抽象、封装和类(2)
    使用bootstrap简单制作Tab切换页
    转载:CSS从大图中抠取小图完整教程(background-position应用)
    xhEditor 整理用法
    SCADA开源项目lite版本
    ImageSharp源码详解之JPEG压缩原理(3)DCT变换
    ImageSharp源码详解之JPEG压缩原理(4)熵编码
  • 原文地址:https://www.cnblogs.com/wangjq19920210/p/15479842.html
Copyright © 2011-2022 走看看