我爱编程

记录VSCode个人配置

2018-01-31  本文已影响911人  神图

最近更新vscode之后,插件栏、调试栏按钮不见了,不知道什么情况,只能重装试试,这里保存下个人配置。其实最近用得比较少,因为占用资源太多,公司的电脑配置比较低,敲代码都卡顿简直不能忍
{
"editor.renderIndentGuides": false,
"workbench.colorTheme": "FlatUI Immersed",
"editor.fontFamily": "'Operator Mono', 'Anonymous Pro','Operator Mono Light', 'Droid Sans Mono', 'Anonymous Pro', 'Andale Mono', 'PT Mono', 'M+ 1mn narrow', 'Courier New', monospace",
"window.zoomLevel": 1,
"editor.wordWrap": "on",
"editor.fontSize": 12,
"editor.lineHeight": 20,
"search.exclude": {
"/node_modules": true,
"
/bower_components": true,
"/Animation":true,
"
/IG":true,
"
/CustomFonts":true,
"
/Effects":true,
"
/Emoji":true,
"
/Fog":true,
"
/Gizmos":true,
"
/Fonts":true,
"
/Map":false,
"
/Models":true,
"
/Plugins":false,
"
/Resources":true,
"
/RuntimeLibs":true,
"
/Scenes":false,
"
/Sound":true,
"
/StartImage":true,
"
/Statistics":true,
"
/StreamingAssets":true,
"
/T4M":true,
"/Test":true,
"
/UIImage":true,
"
/ylfTest":true,
"
/Library":true,
"
/Candlelight/Library/":false,
"/obj":true,
"
/ProjectSettings":true,
"/Temp":true
},
"files.exclude": {
"
/.git": true,
"/.meta": true,
"
/.png": true,
"/.jpg": true,
"
/.jpeg": true,
"/.bmp": true,
"
/.tga": true,
"/.prefab": true,
"
/.unity3d": true,
"/.asset": true,
"
/.db": true,
"/.dwlt": true,
"
/.prefs": true,
"/.anim": true,
"
/.fbx": true,
"/.bytes": true,
"
/.csproj": false,
"/.sln": false,
"
/.svn": true,
"
/.hg": true,
"
/CVS": true,
"
/.DS_Store": true
},
"workbench.iconTheme": "seti",
"editor.minimap.enabled": false,
"bookmarks.saveBookmarksInProject": true,
"amVim.bindCtrlCommands": false,
"amVim.startInInsertMode": false,
"files.autoGuessEncoding": true,
"csharp.format.enable": false,
"python.linting.enabledWithoutWorkspace": false,
"python.disablePromptForFeatures": [
"pylint"
],
"explorer.confirmDelete": false,
"psi-header.config": {
"forceToTop": true,
"blankLinesAfter": 6,
"license": "Custom"
},
"psi-header.license-text": [
"(C)Copyright 2009 - 2017, www.longtugame.com",
"All Rights Reserved",
],
"psi-header.variables": [
["author", "simen"],
["authoremail", "860199786@qq.com"],
["company", "longtugame"],
],
"psi-header.changes-tracking": {
"isActive": true,
"modAuthor": "Modified By: ",
"modDate": "Last Modified: ",
"modDateFormat": "date",
"include": [],
"exclude": [
"markdown",
"json"
],
"autoHeader": "manualSave"
},
"psi-header.lang-config": [
{
"language": "lua",
"begin": "--=====================================================",
"prefix": "-- ",
"end": "--=====================================================",
"blankLinesAfter": 0
},
{
"language": "python",
"begin": "###",
"prefix": "# ",
"end": "###",
"blankLinesAfter": 0,
"beforeHeader": [
"#!/usr/bin/env python3",
"# -
- coding:utf-8 --"
]
},
{
"language": "javascript",
"begin": "/
*",
"prefix": " * ",
"end": " /",
"blankLinesAfter": 2,
"forceToTop": false
},
{
"language": "typescript",
"mapTo": "javascript"
},
{
"language": "html",
"begin": ""
},
// {
// "language": "csharp",
// "begin": "/// ",
// "prefix": "/// ",
// "end": "/// ",
// }
],
"psi-header.templates": [
{
"language": "
",
"template": [
// "Project: <<projectpath>>",
"Copyright: <<licensetext>>",
"File: <<filename>>",
"Created Date: <<filecreated('YYYY/MM/DD, h:mm:ss a')>>",
"Author: <<author>>",
"Description: ",
"",
"Last Modified: <<dateformat('YYYY/MM/DD, h:mm:ss a')>>",
"Modified By: <<author>> (<<authoremail>>)",
]
},
// {
// "language": "javascript",
// "template": [
// "File: <<filepath>>",
// "Project: <<projectpath>>",
// "Created Date: <<filecreated('dddd, MMMM Do YYYY, h:mm:ss a')>>",
// "Author: <<author>>",
// "-----",
// "Last Modified: ",
// "Modified By: ",
// "-----",
// "Copyright (c) <<year>> <<company>>",
// "------------------------------------",
// "Javascript will save your soul!"
// ]
// },
// {
// "language": "typescript",
// "mapTo": "javascript"
// }
]
}

上一篇 下一篇

猜你喜欢

热点阅读