Skip to content

Instantly share code, notes, and snippets.

@zohnannor
Last active July 2, 2022 21:35
Show Gist options
  • Save zohnannor/1a27a25deb150d3e3b407adad3d6e815 to your computer and use it in GitHub Desktop.
Save zohnannor/1a27a25deb150d3e3b407adad3d6e815 to your computer and use it in GitHub Desktop.
{
/* VSCODE */
"explorer.confirmDragAndDrop": false,
"explorer.incrementalNaming": "smart",
"explorer.confirmDelete": false,
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.patterns": {
"*.ts": "${capture}.js",
"*.js": "${capture}.js.map, ${capture}.min.js, ${capture}.d.ts",
"*.jsx": "${capture}.js",
"*.tsx": "${capture}.ts",
"tsconfig.json": "tsconfig.*.json",
"package.json": "package-lock.json, yarn.lock",
"Cargo.toml": "Cargo.lock",
"*": "${basename}.*.${dirname}"
},
"files.autoGuessEncoding": true,
"files.simpleDialog.enable": true,
"files.insertFinalNewline": true,
"zenMode.centerLayout": false,
"zenMode.fullScreen": false,
"zenMode.hideLineNumbers": false,
"zenMode.hideTabs": false,
"zenMode.hideStatusBar": false,
"zenMode.hideActivityBar": false,
"window.newWindowDimensions": "maximized",
"window.titleSeparator": " • ",
"files.exclude": {
"**/.git": false,
"**/node_modules": true
},
"debug.console.fontFamily": "'Fira Code'",
/* TERMINAL */
"terminal.explorerKind": "integrated",
"terminal.integrated.cursorStyle": "line",
"terminal.integrated.fontSize": 16,
"terminal.integrated.fontFamily": "'FiraCode Nerd Font', 'Fira Code'",
// "terminal.integrated.fontFamily": "JetBrainsMono Nerd Font",
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.rightClickBehavior": "default",
"terminal.integrated.defaultProfile.linux": "zsh",
"terminal.integrated.defaultProfile.windows": "pwsh",
"terminal.external.windowsExec": "C:\\WINDOWS\\System32\\wsl.exe",
"terminal.integrated.shellIntegration.enabled": true,
"terminal.integrated.shellIntegration.showWelcome": false,
"terminal.integrated.tabs.focusMode": "singleClick",
"terminal.integrated.tabs.title": "${process}",
"terminal.integrated.profiles.windows": {
"WSL": {
"path": "C:\\WINDOWS\\System32\\wsl.exe",
"args": [],
"icon": "terminal-linux"
},
"pwsh": {
"path": "C:\\Program Files\\PowerShell\\7\\pwsh.exe",
"args": ["-nologo"],
"icon": "terminal-powershell"
}
},
"terminal.integrated.useWslProfiles": false,
"terminal.integrated.enableBell": true,
"terminal.integrated.allowMnemonics": true,
// "terminal.integrated.altClickMovesCursor":false,
/* EDITOR */
"editor.fontFamily": "'Fira Code', 'JetBrains Mono'",
// "editor.fontFamily": "'Fira Code', 'JetBrains Mono', Consolas, Monaco, 'Courier New', monospace",
"editor.fontLigatures": "'cv14', 'cv31', 'cv30', 'ss09', 'cv27', 'ss10'",
"editor.fontSize": 16,
"editor.rulers": [80, 120],
"editor.minimap.showSlider": "always",
"editor.tabSize": 4,
"editor.mouseWheelZoom": true,
"editor.renderControlCharacters": false,
"editor.renderLineHighlight": "all",
"editor.renderWhitespace": "all",
"editor.formatOnSave": true,
"editor.cursorBlinking": "phase",
"editor.suggestSelection": "recentlyUsedByPrefix",
"editor.cursorSmoothCaretAnimation": true,
"editor.cursorSurroundingLinesStyle": "all",
"editor.find.autoFindInSelection": "multiline",
"editor.suggest.localityBonus": true,
"editor.suggest.shareSuggestSelections": true,
"editor.linkedEditing": true,
"editor.find.addExtraSpaceOnTop": false,
"editor.acceptSuggestionOnCommitCharacter": false,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.tokenColorCustomizations": {
"[Community Material Theme Darker High Contrast]": {
"textMateRules": [
{
"scope": [
"comment.block.documentation",
"comment",
"comment.block",
"comment.line"
],
"settings": {
"fontStyle": "italic"
}
},
{
"scope": "support.type",
"settings": {
"foreground": "#ffcb6b",
"fontStyle": "bold"
}
},
{
"scope": "keyword.other",
"settings": {
"foreground": "#c792ea",
"fontStyle": "bold"
}
},
{
"scope": "keyword.control",
"settings": {
"foreground": "#c792ea",
"fontStyle": "bold"
}
}
]
}
},
"editor.semanticTokenColorCustomizations": {
"[Community Material Theme Darker High Contrast]": {
"enabled": true,
"rules": {
"*.constant": {
"foreground": "#f07178",
"fontStyle": ""
},
"comment": {
"fontStyle": "italic"
},
"*.consuming": "#AFC9FF",
"*.controlFlow": {
"fontStyle": "",
"foreground": "#c792ea"
},
"*.static": "#f07178",
"*.unsafe": {
"bold": true
},
"builtinType": {
"foreground": "#ff5370",
"italic": true
},
"enum": "#F06292",
"enumMember": "#EC407A",
"formatSpecifier": "#FF5370",
"interface": {
"italic": true
},
"method": "#82AAFF",
"namespace": {
"underline": true
},
"property": {
"fontStyle": "italic"
},
"selfKeyword": {
"foreground": "#FF5370",
"fontStyle": "italic"
},
"typeAlias": {
"foreground": "#FF5370",
"fontStyle": "italic"
},
"unresolvedReference": {
"foreground": "#6d0000",
"underline": true,
"bold": true
},
"*.documentation": { "fontStyle": "italic" },
"*.async": {
"foreground": "#ff2f5c",
"bold": true
},
// "*.declaration": { "fontStyle": "", },
"*.builtin": {
"foreground": "#ff5370",
"italic": true
},
// "*.callable": "#00ff40",
"*.deprecated": {
"foreground": "#6d0000",
"underline": true,
"bold": true
},
"*.modification": "#00ff40",
// "*.readonly": "#00ff40",
// "variable": "#ffffff",
"field": "#82AAFF",
"parameter": "#FF5370"
// "genericType": "#00ff40",
// "memberOperatorOverload": "#00ff40"
// "operatorOverload": "#00ff40",
// "operatorOverloaded": "#00ff40",
// "preprocessorKeyword": "#00ff40",
// "referenceType": "#00ff40",
// "regexp": "#00ff40",
// "selfParameter": "#00ff40",
// "stringEscapeCharacter": "#00ff40",
}
}
},
"workbench.startupEditor": "none",
"workbench.editor.highlightModifiedTabs": true,
"workbench.editor.decorations.colors": true,
"workbench.editor.decorations.badges": true,
"workbench.settings.editor": "json",
"workbench.panel.defaultLocation": "bottom",
"workbench.tree.indent": 20,
"workbench.tree.renderIndentGuides": "always",
"workbench.colorTheme": "Community Material Theme Darker High Contrast",
"editor.bracketPairColorization.enabled": true,
"editor.bracketPairColorization.independentColorPoolPerBracketType": true,
"editor.matchBrackets": "always",
"editor.guides.highlightActiveBracketPair": true,
"editor.guides.bracketPairsHorizontal": true,
"editor.guides.bracketPairs": "active",
"workbench.colorCustomizations": {
"editorBracketHighlight.foreground1": "#ffd700",
"editorBracketHighlight.foreground2": "#da70d6",
"editorBracketHighlight.foreground3": "#87cefa",
"editorBracketHighlight.unexpectedBracket.foreground": "#fd172a",
"inlineparameters.annotationBackground": "#0a0a0a",
"inlineparameters.annotationForeground": "#5C6D75",
"[Community Material Theme Darker High Contrast]": {
"titleBar.border": "#1f1f1f",
"titleBar.activeBackground": "#0a0a0a",
"terminal.tab.activeBorder": "#80cbc4",
"terminal.background": "#0a0a0a",
"tab.inactiveBackground": "#0a0a0a",
"tab.border": "#1f1f1f",
"tab.activeModifiedBorder": "#80cbc4",
"tab.activeBorder": "#80cbc4",
"tab.activeBackground": "#0a0a0a",
"statusBar.noFolderBackground": "#1b1b1b",
"statusBar.border": "#1f1f1f",
"statusBar.background": "#0a0a0a",
"sideBarSectionHeader.background": "#0e0e0e",
"sideBar.border": "#1f1f1f",
"sideBar.background": "#0a0a0a",
"scm.providerBorder": "#1f1f1f",
"sash.hoverBorder": "#80cbc4",
"peekView.border": "#1f1f1f",
"panel.border": "#1f1f1f",
"panel.background": "#070707",
"menu.background": "#121212",
"editorGroupHeader.tabsBackground": "#0a0a0a",
"editor.background": "#0a0a0a",
"diffEditor.border": "#1f1f1f",
"contrastBorder": "#1f1f1f",
"breadcrumbPicker.background": "#0a0a0a",
"breadcrumb.background": "#0a0a0a",
"activityBar.border": "#1f1f1f",
"activityBar.background": "#0a0a0a",
"activityBar.activeBorder": "#80cbc4"
}
},
/* PYTHON */
"python.formatting.provider": "black",
"python.languageServer": "Pylance",
"python.linting.mypyEnabled": true,
"python.terminal.activateEnvInCurrentTerminal": true,
"python.analysis.typeCheckingMode": "basic",
"python.formatting.blackArgs": ["-S"],
"python.analysis.completeFunctionParens": true,
"jupyter.themeMatplotlibPlots": true,
"python.linting.mypyArgs": [
// "--verbose",
// "--ignore-missing-imports",
// "--show-error-context",
// "--stats",
// "--inferstats",
// "--scripts-are-modules",
// "--show-column-numbers",
// "--strict",
// "--check-untyped-defs",
// "--disallow-any-decorated",
// "--disallow-any-expr",
// "--disallow-any-explicit",
// "--disallow-any-generics",
// "--disallow-any-unimported",
// "--disallow-incomplete-defs",
// "--disallow-subclassing-any",
// "--disallow-untyped-calls",
// "--disallow-untyped-decorators",
// "--disallow-untyped-defs",
// "--no-strict-optional",
// "--no-warn-no-return",
// "--warn-incomplete-stub",
// "--warn-redundant-casts",
// "--warn-return-any",
// "--warn-unreachable",
// "--warn-unused-configs",
// "--warn-unused-ignores"
],
/* RUST */
"rust-analyzer.assist.expressionFillDefault": "default",
"rust-analyzer.cargo.features": "all",
"rust-analyzer.checkOnSave.command": "clippy",
"rust-analyzer.checkOnSave.overrideCommand": [
"cargo",
"clippy",
"--all-targets",
"--message-format=json",
"--",
"-W",
"clippy::all",
"-W",
"clippy::pedantic",
"-W",
"clippy::nursery",
"-W",
"rustdoc::all"
// "-W",
// "clippy::cargo"
],
"rust-analyzer.completion.privateEditable.enable": true,
"rust-analyzer.completion.snippets.custom": {
"Option<T>": {
"postfix": "opt",
"body": "Option<${receiver}>",
"description": "Wrap the expression in an `Option<T>`",
"scope": "type"
}
},
"rust-analyzer.debug.engine": "vadimcn.vscode-lldb",
"rust-analyzer.hover.actions.references.enable": true,
"rust-analyzer.imports.granularity.enforce": true,
"rust-analyzer.inlayHints.bindingModeHints.enable": true,
"rust-analyzer.inlayHints.chainingHints.enable": true,
"rust-analyzer.inlayHints.closingBraceHints.enable": true,
"rust-analyzer.inlayHints.closingBraceHints.minLines": 25,
"rust-analyzer.inlayHints.closureReturnTypeHints.enable": "always",
"rust-analyzer.inlayHints.lifetimeElisionHints.enable": "always",
"rust-analyzer.inlayHints.lifetimeElisionHints.useParameterNames": true,
"rust-analyzer.inlayHints.maxLength": 25,
"rust-analyzer.inlayHints.parameterHints.enable": true,
"rust-analyzer.inlayHints.reborrowHints.enable": "always",
"rust-analyzer.inlayHints.renderColons": true,
"rust-analyzer.inlayHints.typeHints.enable": true,
"rust-analyzer.lens.references.adt.enable": true,
"rust-analyzer.lens.references.enumVariant.enable": true,
"rust-analyzer.lens.references.method.enable": true,
"rust-analyzer.lens.references.trait.enable": true,
"rust-analyzer.notifications.cargoTomlNotFound": false,
"rust-analyzer.procMacro.enable": true,
"rust-analyzer.rustfmt.extraArgs": ["--config", "tab_spaces=4"],
"rust-analyzer.runnableEnv": {
// "RUST_LOG": "info"
},
"rust-analyzer.workspace.symbol.search.kind": "all_symbols",
"lldb.launch.sourceMap": {
"/rustc/fe5b13d681f25ee6474be29d748c65adcd91f69e/": "C:/Users/Vadik/.rustup/toolchains/stable-x86_64-pc-windows-msvc/lib/rustlib/src/rust/",
"C:\\Users\\runneradmin": "C:/Users/Vadik/"
},
/* ZIG */
"zigLanguageClient.path": "C:/Users/Vadik/zls/zig-out/bin/zls.exe",
"C_Cpp.clang_format_sortIncludes": true,
"C_Cpp.default.includePath": [
"${workspaceFolder}/**",
"C:/MinGW/include/**",
"C:/MinGW/lib/gcc/mingw32/9.2.0/**"
],
"C_Cpp.default.cStandard": "c17",
"C_Cpp.default.cppStandard": "c++20",
"C_Cpp.autocompleteAddParentheses": true,
"C_Cpp.clang_format_style": "Google",
"C_Cpp.clang_format_fallbackStyle": "Visual Studio",
/* C# */
"omnisharp.useGlobalMono": "always",
/* JS */
"eslint.options": {
"env": {
"browser": true,
"es2021": true,
"es6": true
},
"extends": ["eslint:recommended", "plugin:react/recommended"],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": ["react"],
"rules": {
"indent": ["error", 2],
"quotes": ["error", "single"],
"semi": ["error", "always"]
}
},
/* GO */
"go.toolsManagement.autoUpdate": true,
"go.coverOnSave": true,
"go.enableCodeLens": {
"references": true
},
/* PRETTIER */
"prettier.printWidth": 80,
"prettier.singleQuote": true,
"prettier.tabWidth": 4,
/* TS */
"typescript.updateImportsOnFileMove.enabled": "always",
"typescript.preferences.importModuleSpecifier": "relative",
"macros": {
"runFocus": [
"python.execInTerminal-icon",
"workbench.action.terminal.focus"
]
},
"liveServer.settings.donotShowInfoMsg": true,
/* FILETYPE SETTINGS */
"[typescript][typescriptreact][jsonc][json][javascript][html][markdown]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[python]": {
"editor.defaultFormatter": "ms-python.python"
},
"[rust]": {
"editor.defaultFormatter": "rust-lang.rust-analyzer"
},
"[c][cpp]": {
"editor.defaultFormatter": "ms-vscode.cpptools"
},
"[ruby]": {
// "editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[go]": {
"editor.defaultFormatter": "golang.go-nightly"
},
"[zig]": {
"editor.defaultFormatter": "tiehuis.zig"
},
"[markdown]": {
"editor.unicodeHighlight.ambiguousCharacters": false,
"editor.unicodeHighlight.invisibleCharacters": false,
"editor.wordWrap": "on",
"editor.quickSuggestions": {
"comments": "off",
"strings": "off",
"other": "off"
},
"cSpell.fixSpellingWithRenameProvider": true,
"cSpell.advanced.feature.useReferenceProviderWithRename": true,
"cSpell.advanced.feature.useReferenceProviderRemove": "/^#+\\s/",
"editor.defaultFormatter": "DavidAnson.vscode-markdownlint"
},
"ruby.useLanguageServer": true,
"ruby.lint": {
"ruby": true
},
"prettier.jsxSingleQuote": true,
"diffEditor.maxComputationTime": 0,
"debug.allowBreakpointsEverywhere": true,
"emmet.preferences": {},
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"emmet.triggerExpansionOnTab": true,
"cSpell.language": "en,ru,en-US",
"javascript.updateImportsOnFileMove.enabled": "always",
"liveshare.presence": true,
"liveServer.settings.CustomBrowser": "chrome",
"liveServer.settings.port": 25565,
"debug.onTaskErrors": "abort",
"C_Cpp.experimentalFeatures": "Enabled",
"inline-parameters.margin": "0",
"inline-parameters.padding": "0",
"inline-parameters.fontSize": "16",
"inline-parameters.fontStyle": "normal",
"inline-parameters.fontWeight": "500",
"inline-parameters.borderRadius": "0",
/* VIM */
"vim.disableExtension": true,
"vim.useSystemClipboard": true,
"vim.vimrc.enable": true,
"vim.vimrc.path": "~/.vimrc",
"vim.handleKeys": {
"<C-a>": false,
"<C-f>": false,
"<C-h>": false,
"<C-w>": false
},
"vim.foldfix": true,
"vim.normalModeKeyBindings": [
{ "before": ["ё"], "after": ["`"] },
{ "before": ["й"], "after": ["q"] },
{ "before": ["ц"], "after": ["w"] },
{ "before": ["у"], "after": ["e"] },
{ "before": ["к"], "after": ["r"] },
{ "before": ["е"], "after": ["t"] },
{ "before": ["н"], "after": ["y"] },
{ "before": ["г"], "after": ["u"] },
{ "before": ["ш"], "after": ["i"] },
{ "before": ["щ"], "after": ["o"] },
{ "before": ["з"], "after": ["p"] },
{ "before": ["х"], "after": ["["] },
{ "before": ["ъ"], "after": ["]"] },
{ "before": ["ф"], "after": ["a"] },
{ "before": ["ы"], "after": ["s"] },
{ "before": ["в"], "after": ["d"] },
{ "before": ["в", "в"], "after": ["d", "d"] },
{ "before": ["а"], "after": ["f"] },
{ "before": ["п"], "after": ["g"] },
{ "before": ["р"], "after": ["h"] },
{ "before": ["о"], "after": ["j"] },
{ "before": ["л"], "after": ["k"] },
{ "before": ["д"], "after": ["l"] },
{ "before": ["ж"], "after": [";"] },
{ "before": ["э"], "after": ["'"] },
{ "before": ["я"], "after": ["z"] },
{ "before": ["я", "я"], "after": ["z", "z"] },
{ "before": ["ч"], "after": ["x"] },
{ "before": ["с"], "after": ["c"] },
{ "before": ["м"], "after": ["v"] },
{ "before": ["и"], "after": ["b"] },
{ "before": ["т"], "after": ["n"] },
{ "before": ["ь"], "after": ["m"] },
{ "before": ["б"], "after": [","] },
{ "before": ["ю"], "after": ["."] },
{ "before": ["Ё"], "after": ["`"] },
{ "before": ["Й"], "after": ["Q"] },
{ "before": ["Ц"], "after": ["W"] },
{ "before": ["У"], "after": ["E"] },
{ "before": ["К"], "after": ["R"] },
{ "before": ["Е"], "after": ["T"] },
{ "before": ["Н"], "after": ["Y"] },
{ "before": ["Г"], "after": ["U"] },
{ "before": ["Ш"], "after": ["I"] },
{ "before": ["Щ"], "after": ["O"] },
{ "before": ["З"], "after": ["P"] },
{ "before": ["Х"], "after": ["["] },
{ "before": ["Ъ"], "after": ["]"] },
{ "before": ["Ф"], "after": ["A"] },
{ "before": ["Ы"], "after": ["S"] },
{ "before": ["В"], "after": ["D"] },
{ "before": ["А"], "after": ["F"] },
{ "before": ["П"], "after": ["G"] },
{ "before": ["Р"], "after": ["H"] },
{ "before": ["О"], "after": ["J"] },
{ "before": ["Л"], "after": ["K"] },
{ "before": ["Д"], "after": ["L"] },
{ "before": ["Ж"], "after": [";"] },
{ "before": ["Э"], "after": ["'"] },
{ "before": ["Я"], "after": ["Z"] },
{ "before": ["Ч"], "after": ["X"] },
{ "before": ["С"], "after": ["C"] },
{ "before": ["М"], "after": ["V"] },
{ "before": ["И"], "after": ["B"] },
{ "before": ["Т"], "after": ["N"] },
{ "before": ["Ь"], "after": ["M"] },
{ "before": ["Б"], "after": [","] },
{ "before": ["Ю"], "after": ["."] }
],
"vim.visualModeKeyBindings": [
{ "before": ["ё"], "after": ["`"] },
{ "before": ["й"], "after": ["q"] },
{ "before": ["ц"], "after": ["w"] },
{ "before": ["у"], "after": ["e"] },
{ "before": ["к"], "after": ["r"] },
{ "before": ["е"], "after": ["t"] },
{ "before": ["н"], "after": ["y"] },
{ "before": ["г"], "after": ["u"] },
{ "before": ["ш"], "after": ["i"] },
{ "before": ["щ"], "after": ["o"] },
{ "before": ["з"], "after": ["p"] },
{ "before": ["х"], "after": ["["] },
{ "before": ["ъ"], "after": ["]"] },
{ "before": ["ф"], "after": ["a"] },
{ "before": ["ы"], "after": ["s"] },
{ "before": ["в"], "after": ["d"] },
{ "before": ["а"], "after": ["f"] },
{ "before": ["п"], "after": ["g"] },
{ "before": ["р"], "after": ["h"] },
{ "before": ["о"], "after": ["j"] },
{ "before": ["л"], "after": ["k"] },
{ "before": ["д"], "after": ["l"] },
{ "before": ["ж"], "after": [";"] },
{ "before": ["э"], "after": ["'"] },
{ "before": ["я"], "after": ["z"] },
{ "before": ["ч"], "after": ["x"] },
{ "before": ["с"], "after": ["c"] },
{ "before": ["м"], "after": ["v"] },
{ "before": ["и"], "after": ["b"] },
{ "before": ["т"], "after": ["n"] },
{ "before": ["ь"], "after": ["m"] },
{ "before": ["б"], "after": [","] },
{ "before": ["ю"], "after": ["."] },
{ "before": ["Ё"], "after": ["`"] },
{ "before": ["Й"], "after": ["Q"] },
{ "before": ["Ц"], "after": ["W"] },
{ "before": ["У"], "after": ["E"] },
{ "before": ["К"], "after": ["R"] },
{ "before": ["Е"], "after": ["T"] },
{ "before": ["Н"], "after": ["Y"] },
{ "before": ["Г"], "after": ["U"] },
{ "before": ["Ш"], "after": ["I"] },
{ "before": ["Щ"], "after": ["O"] },
{ "before": ["З"], "after": ["P"] },
{ "before": ["Х"], "after": ["["] },
{ "before": ["Ъ"], "after": ["]"] },
{ "before": ["Ф"], "after": ["A"] },
{ "before": ["Ы"], "after": ["S"] },
{ "before": ["В"], "after": ["D"] },
{ "before": ["А"], "after": ["F"] },
{ "before": ["П"], "after": ["G"] },
{ "before": ["Р"], "after": ["H"] },
{ "before": ["О"], "after": ["J"] },
{ "before": ["Л"], "after": ["K"] },
{ "before": ["Д"], "after": ["L"] },
{ "before": ["Ж"], "after": [";"] },
{ "before": ["Э"], "after": ["'"] },
{ "before": ["Я"], "after": ["Z"] },
{ "before": ["Ч"], "after": ["X"] },
{ "before": ["С"], "after": ["C"] },
{ "before": ["М"], "after": ["V"] },
{ "before": ["И"], "after": ["B"] },
{ "before": ["Т"], "after": ["N"] },
{ "before": ["Ь"], "after": ["M"] },
{ "before": ["Б"], "after": [","] },
{ "before": ["Ю"], "after": ["."] }
],
"material-icon-theme.activeIconPack": "react",
"material-icon-theme.folders.theme": "specific",
"files.associations": {
"*.html": "html"
},
"inline-parameters.enabled": false,
"auto-close-tag.SublimeText3Mode": true,
"css.lint.duplicateProperties": "warning",
"css.lint.float": "warning",
"css.lint.universalSelector": "warning",
"css.lint.zeroUnits": "warning",
"html-css-class-completion.enableEmmetSupport": true,
"path-intellisense.autoSlashAfterDirectory": true,
"prettier.arrowParens": "avoid",
"licenser.license": "Choose from list",
"licenser.author": "Zohnannor <zohnannor@gmail.com>",
"licenser.disableAutoHeaderInsertion": true,
"editor.largeFileOptimizations": false,
"security.workspace.trust.enabled": false,
"editor.inlineSuggest.enabled": true,
"notebook.cellToolbarLocation": {
"default": "right",
"jupyter-notebook": "left"
},
"files.eol": "\n",
"cSpell.enabled": true,
"sonarlint.rules": {
"typescript:S125": {
"level": "off"
},
"python:S3776": {
"level": "off"
},
"typescript:S3776": {
"level": "off"
},
"python:S1192": {
"level": "off"
},
"python:S2772": {
"level": "off"
},
"python:S1481": {
"level": "off"
}
},
"errorLens.enabledDiagnosticLevels": ["warning", "info"],
"glassit.alpha": 255,
"editor.unicodeHighlight.allowedCharacters": {
"а": true,
"А": true,
"б": true,
"В": true,
"г": true,
"е": true,
"Е": true,
"З": true,
"К": true,
"М": true,
"Н": true,
"о": true,
"О": true,
"р": true,
"Р": true,
"с": true,
"С": true,
"Т": true,
"у": true,
"У": true,
"х": true,
"Х": true,
"Ь": true
},
"sonarlint.ls.javaHome": "c:\\Users\\Vadik\\.vscode\\extensions\\sonarsource.sonarlint_managed-jre\\jre\\jdk-11.0.14+9-jre",
"editor.multiCursorModifier": "ctrlCmd",
"vsicons.dontShowNewVersionMessage": true,
"tabnine.experimentalAutoImports": true,
"gitlens.changes.toggleMode": "window",
"hexeditor.columnWidth": 16,
"hexeditor.showDecodedText": true,
"hexeditor.defaultEndianness": "little",
"hexeditor.inspectorType": "aside",
"d.dubCompiler": "gdc.EXE",
"rewrap.autoWrap.enabled": true,
"markdown.preview.typographer": true,
"markdownlint.config": {
"no-inline-html": {
"allowed_elements": [
"table",
"thead",
"tbody",
"tfoot",
"td",
"tr",
"th",
"img",
"style"
]
}
},
"workbench.quickOpen.preserveInput": true,
"notebook.lineNumbers": "on",
"editor.inlayHints.fontSize": 14,
"javascript.inlayHints.enumMemberValues.enabled": true,
"javascript.inlayHints.functionLikeReturnTypes.enabled": true,
"javascript.inlayHints.parameterNames.enabled": "literals",
"javascript.inlayHints.parameterTypes.enabled": true,
"javascript.inlayHints.propertyDeclarationTypes.enabled": true,
"javascript.inlayHints.variableTypes.enabled": true,
"typescript.inlayHints.enumMemberValues.enabled": true,
"typescript.inlayHints.functionLikeReturnTypes.enabled": true,
"typescript.inlayHints.parameterNames.enabled": "literals",
"typescript.inlayHints.parameterTypes.enabled": true,
"typescript.inlayHints.propertyDeclarationTypes.enabled": true,
"typescript.inlayHints.variableTypes.enabled": true,
"[sql]": {
"editor.defaultFormatter": "mtxr.sqltools"
},
"[toml]": {
"editor.defaultFormatter": "tamasfe.even-better-toml"
},
"haskell.manageHLS": "GHCup",
"[haskell]": {
"editor.defaultFormatter": "haskell.haskell"
},
"haskell.plugin.rename.config.crossModule": true,
"haskell.plugin.tactics.config.hole_severity": 4,
"workbench.iconTheme": "material-icon-theme",
"extensions.autoUpdate": "onlyEnabledExtensions",
"terminal.integrated.tabs.enabled": false,
"diffEditor.ignoreTrimWhitespace": false,
"gitlens.rebaseEditor.ordering": "asc"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment