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
}

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章