0
点赞
收藏
分享

微信扫一扫

VScode神仙插件,程序员必备

guanguans 2022-01-21 阅读 82


前言

一,推荐主题

Moonlight

Nord

Noctis

Palenight

Ayu

二,万能插件

语言支持

Java

C/C++

MySQL

HTML/CSS

Markdown

Python

代码神器

Auto Close Tag

Better Comments

 

Bracket Pair Colorizer

leetcode

live server

Path Intellisense

编码神器,

vscode-icons

 

Code Runner

Debugger for Chrome

Auto Import

Snippets

background


 
  1. {

  2. "background.useFront" : true ,

  3. "background.useDefault" : false , //是否使用默认图片

  4. "background.customImages" : [

  5. "file:///D:/2/1.jpg" //路径为默认的图片地址

  6. ] ,

  7. "background.style" : {

  8. "content" : "''" ,

  9. "pointer-events" : "none" ,

  10. "position" : "absolute" ,

  11. "z-index" : "99999" ,

  12. "width" : "100%" , //宽度

  13. "height" : "100%" , //高度

  14. "background-position" : "120% 90%" , //文件位置

  15. "background-repeat" : "no-repeat" , //是否默认文字重复

  16. "opacity" : 0.1 //不透明度0~1

  17. } ,

  18. "security.workspace.trust.untrustedFiles" : "open" ,

  19. "workbench.editorAssociations" : {

  20. "*.swf" : "default" ,

  21. "*.exe" : "default"

  22. } ,

  23. "C_Cpp.updateChannel" : "Insiders" ,

  24. "workbench.colorTheme" : "Visual Studio Dark - C++" ,

  25. "code-runner.runInTerminal" : true ,

  26. "terminal.integrated.defaultProfile.windows" : "PowerShell" ,

  27. "window.zoomLevel" : 1 ,

  28. "editor.suggestSelection" : "first" ,

  29. "vsintellicode.modify.editor.suggestSelection" : "automaticallyOverrodeDefaultValue" ,

  30. "files.exclude" : {

  31. "**/.classpath" : true ,

  32. "**/.project" : true ,

  33. "**/.settings" : true ,

  34. "**/.factorypath" : true

  35. }

  36. }

Chinese

举报

相关推荐

0 条评论