Advertisement
ALENTL

settings.json

Nov 22nd, 2023
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.99 KB | None | 0 0
  1. {
  2. "editor.fontLigatures": true,
  3. "editor.fontFamily": "'mozarela'",
  4. "editor.fontSize": 20,
  5. "files.autoSave": "afterDelay",
  6. "workbench.colorTheme": "Community Material Theme Darker High Contrast",
  7. "window.restoreFullscreen": true,
  8. "editor.formatOnSave": true,
  9. "editor.defaultFormatter": "esbenp.prettier-vscode",
  10. "workbench.iconTheme": "material-icon-theme",
  11. "editor.wordWrap": "on",
  12. "editor.formatOnPaste": true,
  13. "css.validate": false,
  14. "less.validate": false,
  15. "scss.validate": false,
  16.  
  17. "stylelint.enable": true,
  18. "stylelint.validate": ["css", "less", "postcss", "scss"],
  19.  
  20. "editor.codeActionsOnSave": {
  21. "source.fixAll": true,
  22. "source.organizeImports": true
  23. },
  24.  
  25. "editor.linkedEditing": false,
  26. "editor.mouseWheelZoom": true,
  27.  
  28. "editor.formatOnType": true,
  29.  
  30. "emmet.includeLanguages": { "django-html": "html", "jinja-html": "html" },
  31.  
  32. "workbench.colorCustomizations": {
  33. "[Community Material Theme Darker High Contrast]": {
  34. "activityBarBadge.background": "#6366f1",
  35. "editorGroupHeader.tabsBackground": "#181818",
  36.  
  37. "activityBarBadge.foreground": "#ffffff",
  38. "activityBar.activeBorder": "#6366f1",
  39. "list.activeSelectionForeground": "#ffffff",
  40. "list.inactiveSelectionForeground": "#ffffff",
  41. "list.highlightForeground": "#6366f1",
  42. "scrollbarSlider.activeBackground": "#6366f1",
  43. "editorSuggestWidget.highlightForeground": "#6366f1",
  44. "textLink.foreground": "#ffffff",
  45. "progressBar.background": "#6366f1",
  46. "pickerGroup.foreground": "#6366f1",
  47. "tab.activeBorder": "#6366f1",
  48. "notificationLink.foreground": "#6366f1",
  49. "editorWidget.resizeBorder": "#6366f1",
  50. "editorWidget.border": "#6366f1",
  51. "settings.modifiedItemIndicator": "#6366f1",
  52. "settings.headerForeground": "#6366f1",
  53. "panelTitle.activeBorder": "#6366f1",
  54. "breadcrumb.activeSelectionForeground": "#6366f1",
  55. "menu.selectionForeground": "#ffffff",
  56. "menu.selectionBackground": "#6366f1",
  57. "menubar.selectionForeground": "#6366f1",
  58. "selection.background": "#6366f1",
  59. "statusBarItem.remoteBackground": "#6366f1",
  60. "statusBarItem.remoteForeground": "#ffffff",
  61. "editor.findMatchBorder": "#6366f1",
  62. "editorLineNumber.activeForeground": "#ffffff",
  63. "editorLineNumber.foreground": "#5e5e5e",
  64. "button.secondaryHoverBackground": "#6366f1",
  65. "button.background": "#6366f1",
  66. "button.foreground": "#ffffff",
  67. "tree.inactiveIndentGuidesStroke": "#999af7",
  68. "tree.indentGuidesStroke": "#6366f1",
  69. // bg colour
  70. "sideBar.background": "#181818",
  71. "menu.background": "#1c1c1c",
  72. "menubar.selectionBorder": "#6366f1",
  73. "menubar.selectionBackground": "#121212",
  74. "menu.separatorBackground": "#6366f1",
  75. "activityBar.background": "#181818",
  76. "statusBar.background": "#121212",
  77. "panel.background": "#1b1b1b",
  78. "titleBar.activeBackground": "#181818",
  79. "breadcrumb.background": "#181818",
  80. "activityBar.activeBackground": "#181818",
  81. "editor.lineHighlightBackground": "#181818",
  82. "widget.shadow": "#181818",
  83. "editor.background": "#181818",
  84. "minimap.background": "#181818",
  85. "panel.border": "#272727",
  86. "pickerGroup.border": "#6366f1",
  87. "editorCursor.foreground": "#6366f1",
  88. "profileBadge.background": "#6366f1",
  89. "profileBadge.foreground": "#ffffff",
  90. "editorSuggestWidget.foreground": "#eeeeee",
  91. "editorSuggestWidget.selectedBackground": "#6366f1",
  92. "editorSuggestWidget.focusHighlightForeground": "#ffffff",
  93. "editorSuggestWidget.background": "#1c1c1c",
  94. "editorSuggestWidget.selectedForeground": "#eeeeee",
  95. "editorSuggestWidget.selectedIconForeground": "#ffffff",
  96. "editorHoverWidget.foreground": "#ffffff",
  97. "editorHoverWidget.background": "#171717",
  98. "editor.lineHighlightBorder": "#2e2e2e"
  99. }
  100. },
  101.  
  102. "editor.tokenColorCustomizations": {
  103. "textMateRules": [
  104. {
  105. "scope": ["source.python"],
  106. "settings": {
  107. "foreground": "#d5d81e"
  108. }
  109. },
  110. {
  111. "scope": "string.quoted",
  112. "settings": {
  113. "foreground": "#FF8C00"
  114. }
  115. },
  116. {
  117. "scope": "keyword.control",
  118. "settings": {
  119. "foreground": "#7c919a",
  120. "fontStyle": "italic bold"
  121. }
  122. }
  123. ]
  124. },
  125.  
  126. "[python]": {
  127. "diffEditor.ignoreTrimWhitespace": false,
  128. "gitlens.codeLens.symbolScopes": ["!Module"],
  129. "editor.formatOnType": true,
  130. "editor.defaultFormatter": "ms-python.black-formatter",
  131. "editor.codeActionsOnSave": {
  132. "source.organizeImports": true
  133. },
  134.  
  135. "isort.args": ["--profile", "black"],
  136. "editor.wordBasedSuggestions": false
  137. },
  138. "[markdown]": {
  139. "editor.formatOnPaste": true,
  140. "editor.formatOnSave": true
  141. },
  142. //"python.analysis.typeCheckingMode": "basic",
  143. "python.analysis.inlayHints.functionReturnTypes": true,
  144. "python.analysis.inlayHints.variableTypes": true,
  145. "python.analysis.indexing": true,
  146. "python.analysis.autoImportCompletions": true,
  147. "python.analysis.logLevel": "Trace",
  148. "powermode.enabled": false,
  149. "powermode.combo.counterEnabled": "hide",
  150. "powermode.combo.timerEnabled": "hide",
  151. "gitlens.keymap": "alternate",
  152. "editor.columnSelection": true,
  153. "oneDarkPro.italic": true,
  154. "powermode.shake.enabled": false,
  155. "python.defaultInterpreterPath": "/usr/local/bin/python3",
  156. "[dart]": {
  157. "editor.formatOnSave": true,
  158. "editor.formatOnType": true,
  159. "editor.rulers": [80],
  160. "editor.selectionHighlight": false,
  161. "editor.suggestSelection": "first",
  162. "editor.tabCompletion": "onlySnippets",
  163. "editor.wordBasedSuggestions": false
  164. },
  165. "cmake.configureOnOpen": true,
  166.  
  167. "better-comments.multilineComments": true,
  168. "editor.minimap.renderCharacters": false,
  169. "editor.minimap.scale": 3,
  170. "editor.minimap.autohide": true,
  171. "editor.multiCursorModifier": "ctrlCmd",
  172. "terminal.integrated.profiles.linux": {
  173. "bash": {
  174. "path": "bash",
  175. "icon": "terminal-bash"
  176. },
  177. "zsh": {
  178. "path": "zsh"
  179. },
  180. "fish": {
  181. "path": "fish"
  182. },
  183. "tmux": {
  184. "path": "tmux",
  185. "icon": "terminal-tmux"
  186. },
  187. "pwsh": {
  188. "path": "pwsh",
  189. "icon": "terminal-powershell"
  190. },
  191. "fish (2)": {
  192. "path": "/bin/fish"
  193. }
  194. },
  195.  
  196. "terminal.integrated.defaultProfile.linux": "fish",
  197. "terminal.integrated.enableImages": true,
  198. "terminal.integrated.fontFamily": "FiraCode Nerd Font Mono",
  199. "terminal.integrated.env.linux": {
  200. "FROM_VSCODE": "true"
  201. },
  202.  
  203. // gistify
  204. "gistify.pastebin.apiToken": "Tk_AXP_kxddbSSQShAugkmsmwUjIwidp",
  205. "gistify.pastebin.defaultUserName": "ALENTL"
  206.  
  207. //"explorer.excludeGitIgnore": true,
  208.  
  209. /*"emojisense.languages": {
  210. "plaintext": {
  211. "markupCompletionsEnabled": true,
  212. "emojiDecoratorsEnabled": true
  213. },
  214. "javascript.validate.enable": false,
  215. "abap": true,
  216. "bat": true,
  217. "bibtex": true,
  218. "clojure": true,
  219. "coffeescript": true,
  220. "c": true,
  221. "cpp": true,
  222. "csharp": true,
  223. "css": true,
  224. "diff": true,
  225. "dockerfile": true,
  226. "fsharp": true,
  227. "git-commit": true,
  228. "git-rebase": true,
  229. "go": true,
  230. "groovy": true,
  231. "handlebars": true,
  232. "html": true,
  233. "ini": true,
  234. "java": true,
  235. "javascript": true,
  236. "javascriptreact": true,
  237. "json": true,
  238. "jsonc": true,
  239. "latex": true,
  240. "less": true,
  241. "lua": true,
  242. "makefile": true,
  243. "markdown": true,
  244. "objective-c": true,
  245. "objective-cpp": true,
  246. "perl6": true,
  247. "php": true,
  248. "powershell": true,
  249. "jade": true,
  250. "python": true,
  251. "r": true,
  252. "razor": true,
  253. "ruby": true,
  254. "rust": true,
  255. "scss": true,
  256. "sass": true,
  257. "shaderlab": true,
  258. "shellscript": true,
  259. "sql": true,
  260. "swift": true,
  261. "typescript": true,
  262. "typescriptreact": true,
  263. "tex": true,
  264. "vb": true,
  265. "xml": true,
  266. "xsl": true,
  267. "yaml": true
  268. },
  269. "emojisense.showOnColon": true,
  270. "emojisense.unicodeCompletionsEnabled": true,
  271. "emojisense.emojiDecoratorsEnabled": true,
  272. "emojisense.markupCompletionsEnabled": true*/
  273. }
  274.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement