Advertisement
Guest User

Untitled

a guest
Oct 20th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. {
  2. // editor
  3. "editor.fontFamily": "Iosevka",
  4. "editor.fontSize": 16,
  5. "editor.fontLigatures": false,
  6. "editor.cursorStyle": "block",
  7. "editor.lineNumbers": "relative",
  8. "editor.roundedSelection": false,
  9. "editor.smoothScrolling": false,
  10. "editor.suggestSelection": "recentlyUsedByPrefix",
  11. "editor.minimap.enabled": false,
  12.  
  13. // terminal (integrated)
  14. "terminal.integrated.shell.windows": "C:\\Windows\\System32\\cmd.exe",
  15. "terminal.integrated.enableBell": true,
  16. "terminal.integrated.cursorStyle": "block",
  17. "terminal.integrated.fontFamily": "Iosevka",
  18. "terminal.integrated.fontSize": 14,
  19.  
  20. // workbench
  21. "workbench.startupEditor": "none",
  22. "workbench.editor.enablePreview": false,
  23. "workbench.editor.enablePreviewFromQuickOpen": false,
  24.  
  25. // files
  26. "files.associations": {
  27. "Pipfile": "toml",
  28. "Vagrantfile": "ruby",
  29. },
  30. "files.trimTrailingWhitespace": true,
  31. "files.insertFinalNewline": true,
  32.  
  33. // window
  34. "window.restoreWindows": "none",
  35.  
  36. // vim
  37. "vim.hlsearch": true,
  38. "vim.textwidth": 72,
  39.  
  40. // python
  41. "python.jediEnabled": false,
  42. "window.zoomLevel": 0,
  43. "liveshare.featureSet": "stable",
  44. "vsicons.dontShowNewVersionMessage": true
  45. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement