VSCode常用插件&用户设置

★★★★VSCode常用插件。


★★Eclipse Keymap
Eclipse快捷键。

★★Git History
Git历史记录。

★★Git Project Manager
GPM就是一个Git项目管理器。

★★mssql
sql智能提示。

★★PHP IntelliSense
PHP代码提示。

★★PHP Debug
PHP程序调试。

★★PHP extension pack
PHP扩展包管理。

★★Python
Python代码提示。

★★background
二次元背景图片。
http://www.mamicode.com/info-detail-1899251.html

★★Bracket Pair Colorizer
括号颜色配对,拥有独立的颜色,易于区分,可以配合任意主题使用。

★★vscode-icons
让vscode资源树目录加上图标,必备良品。
http://blog.csdn.net/u011127019/article/details/53159256

★★Debugger for Chrome
让vscode映射chrome的debug功能。

★★Path Intellisense
自动路劲补全,默认不带这个功能的,赶紧装。

★★filesize
在底部状态栏显示当前文件大小,点击后还可以看到详细创建,修改时间。

★★Apache Conf
Apache配置文件语法支持。

★★Apache Conf Snippets
.htaccess文件代码提示。

★★Chinese (Simplified) Language Pack for Visual Studio Code
适用于 VS Code 的中文(简体)语言包。

★★HTML CSS Support。
在HTML中写CSS时代码提示

★★HTML Snippets
在HTML代码提示

★★IntelliSense for CSS class names in HTML
在HTML中CSS类名的智能感知

★★jQuery Snippets
jQuery代码提示

★★jQuery Code Snippets
jQuery代码片段提示

{
	"php.validate.executablePath": "D:/software/phpstudy/PHPTutorial/php/php-7.1.13-nts/php.exe",
	"php.executablePath": "D:/software/phpstudy/PHPTutorial/php/php-7.1.13-nts/php.exe",
	"editor.trimAutoWhitespace": false,//换行时不会自动删除tab
	"editor.wordSeparators": "`~!@#%^&*()-=+[{]}\\|;:'\",.<>/?",//这样设置,选中的时候会把$符号也一起选中
	"editor.autoIndent": false,
	"editor.renderWhitespace": "all",
	"editor.detectIndentation": false,
	"editor.quickSuggestions": {//设置在html写Css和Js代码时一样有提示
		"other": true,
		"comments": true,
		"strings": true
	},
	"files.autoSave": "afterDelay",
	"explorer.autoReveal": false,// 控制资源管理器是否应在打开文件时自动显示并选择它们。
	"markdown.preview.doubleClickToSwitchToEditor": true,// 在 Markdown 预览中双击切换到编辑器。

	"workbench.iconTheme": "vscode-icons",
	"git.enableSmartCommit": true,
	"git.confirmSync": false,
	"git.autofetch": true,
	"gitlens.advanced.messages": {
		"suppressShowKeyBindingsNotice": true
	},
	"window.zoomLevel": 0
}

 

你可能感兴趣的:(VSCode常用插件&用户设置)