Skip to content

Instantly share code, notes, and snippets.

@nlimpid
Created October 25, 2017 03:19
Show Gist options
  • Select an option

  • Save nlimpid/96f2bc85a386b1e031e45acec9609a43 to your computer and use it in GitHub Desktop.

Select an option

Save nlimpid/96f2bc85a386b1e031e45acec9609a43 to your computer and use it in GitHub Desktop.
vscode config son
// Place your settings in this file to overwrite the default settings
{
//"editor.fontFamily": "mplus-1m-regular",
"editor.fontFamily": "Inziu Iosevka SC",
"go.useLanguageServer": false,
// "editor.fontFamily": "FiraCode-Retina",
"editor.fontSize": 18, //中国年问
"editor.lineHeight": 0, //行高没问题
"editor.tabSize": 4,
"editor.fontLigatures": true,
"window.nativeTabs": false,
"http.proxy": "http://localhost:8888",
"http.proxyStrictSSL": false,
"window.openFoldersInNewWindow": "default",
// "terminal.integrated.fontFamily": "pragmatapro for powerline",
"terminal.integrated.fontFamily": "Inziu Iosevka SC",
"terminal.integrated.fontSize": 16,
"terminal.integrated.scrollback": 5000,
"terminal.integrated.rightClickCopyPaste": true,
// "python.pythonPath": "~/Developer/Envs/qpweb/bin/python",
"python.pythonPath": "~/Developer/Envs/python3/bin/python",
"python.linting.pylintPath": "/Users/JS/Developer/Envs/python3/bin/pylint",
"go.gopath": "~/Developer/go",
"go.goroot": "/usr/local/opt/go/libexec/",
"typescript.implementationsCodeLens.enabled": true,
// "vim.leader": ",",
// "vim.easymotion": true,
// "vim.useSystemClipboard": true,
// "vim.startInInsertMode": false,
"workbench.iconTheme": "vscode-icons",
"workbench.sideBar.location": "left",
"editor.minimap.enabled": false,
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/.DS_Store": true,
"**/*.pyc": true
},
"beautify.config": {
"indent_size": 4,
"indent_char": " ",
"css": {
"indent_size": 2
},
"html": {
"indent_size": 2
}
},
"sync.host": "",
"sync.pathPrefix": "",
"window.zoomLevel": 0,
"workbench.activityBar.visible": true,
"workbench.colorTheme": "Material Theme",
// "vimStyle.useErgonomicKeyForMotion": true,
// "workbench.colorCustomizations": {
// "activeTabBackground": "#282c34",
// "activityBarBackground": "#282c34",
// "editorGroupBackground": "#282c34",
// "sideBarBackground": "#282c34"
// }
"projectManager.groupList": true,
"projectManager.vscode.baseFolders": [
"$home/Developer"
],
"projectManager.git.baseFolders": [
"$home/Developer",
"$home/Developer/go/src",
"$home/Developer/go/src/zonst"
],
"projectManager.git.maxDepthRecursion": 4,
"vsicons.dontShowNewVersionMessage": true,
"editor.renderIndentGuides": false,
"extensions.autoUpdate": false,
"editor.autoIndent": false,
"extensions.ignoreRecommendations": false,
"materialTheme.cache.workbench.settings": {
"themeColours": "Palenight"
},
"vim.disableAnnoyingNeovimMessage": true,
"C_Cpp.intelliSenseEngine": "Default"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment