Last active
February 24, 2026 21:26
-
-
Save EvgenyOrekhov/ffe91ccc6851651a89729750548a642b to your computer and use it in GitHub Desktop.
Settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ctl.equal { | |
| type equal; | |
| } | |
| pcm.plugequal { | |
| type equal; | |
| # Modify the line below if you do not | |
| # want to use sound card 0. | |
| #slave.pcm "plughw:0,0"; | |
| # by default we want to play from more sources at time: | |
| slave.pcm "plug:dmix"; | |
| } | |
| pcm.!default { | |
| type plug; | |
| slave.pcm plugequal; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| set guidestripe 72 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| vo=gpu | |
| hwdec=vdpau-copy | |
| profile=gpu-hq | |
| scale=ewa_lanczossharp | |
| cscale=ewa_lanczossharp | |
| sharpen=2 | |
| interpolation=yes | |
| tscale=oversample | |
| video-sync=display-resample | |
| alang=English,eng,en | |
| slang=English,eng,en | |
| audio-file-auto=fuzzy | |
| sub-auto=fuzzy | |
| sub-filter-sdh=yes | |
| sub-filter-sdh-harder=yes | |
| fullscreen=yes | |
| af=superequalizer=1b=1:2b=1:3b=0.5:4b=0.5:5b=0.5:6b=0.5:7b=0.5:8b=0.5:9b=0.5:10b=0.5:11b=0.5:12b=0.5:13b=0.5:14b=0.5:15b=0.5:16b=1:17b=1:18b=1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| без фильтрации: | |
| - 192.168.1.1 | |
| - alibaba.com | |
| - aliexpress.com | |
| - aliexpress.ru | |
| - app.element.io | |
| - bitbucket.org | |
| - dropbox.com | |
| - emphasoft.com | |
| - facebook.com | |
| - feedly.com | |
| - forethought.ai | |
| - genotek.ru | |
| - github.com | |
| - github.io | |
| - gitlab.com | |
| - gosuslugi.ru | |
| - hh.ru | |
| - imdb.com | |
| - instagram.com | |
| - jsfiddle.net | |
| - leanpub.com | |
| - lingualeo.com | |
| - localhost | |
| - mail.ru | |
| - moviemakeronline.com | |
| - myshows.me | |
| - nalog.ru | |
| - notabenoid.org | |
| - npmjs.com | |
| - ok.ru | |
| - olegb.ru | |
| - psbank.ru | |
| - rt.ru | |
| - sberbank.ru | |
| - slack.com | |
| - tbank.ru | |
| - twitter.com | |
| - urbandictionary.com | |
| - vercel.app | |
| - vk.com | |
| - web.skype.com | |
| - wikipedia.org | |
| - yandex.ru | |
| - yandex.com | |
| - chatgpt.com | |
| - grok.com | |
| - x.com | |
| - google.com | |
| - ozon.ru | |
| - wildberries.ru | |
| - halvacard.ru | |
| - megamarket.ru | |
| - sovcombank.ru | |
| - vtb.ru | |
| - alfabank.ru | |
| - mkb.ru | |
| - finuslugi.ru | |
| базовый: | |
| оптимальный: | |
| - all-urls | |
| полный: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| "compilerOptions": { | |
| // Target environment | |
| "target": "esnext", // Use latest JS features | |
| "lib": ["DOM", "ESNext"], // Include browser and modern JS APIs | |
| "jsx": "react-jsx", // Use modern JSX transform (React 17+) | |
| // Module system and resolution | |
| "module": "preserve", // keep the original ES module import and export syntax in the output JavaScript files | |
| "moduleDetection": "force", // Treat all non-declaration files as modules | |
| "allowImportingTsExtensions": true, // Allow imports with .ts/.js extensions | |
| "resolveJsonModule": true, // Allow importing JSON modules | |
| "verbatimModuleSyntax": true, // Preserve import/export syntax | |
| // Type checking and safety | |
| "types": [], // Set this to "node"/"bun"/whatever | |
| "strict": true, // Enable all strict type-checking options | |
| "noFallthroughCasesInSwitch": true, // Disallow fallthrough in switch statements | |
| "noImplicitOverride": true, // Enforce `override` for class method overrides | |
| "noImplicitReturns": true, // Ensure functions return a value | |
| "noUncheckedIndexedAccess": true, // Add undefined to possibly missing index accesses | |
| "noUnusedLocals": false, // DO NOT check unused local variables, should be handled by a linter | |
| "noUnusedParameters": false, // DO NOT check unused function parameters, should be handled by a linter | |
| "allowUnusedLabels": false, // Raise compiler errors about unused labels | |
| "allowUnreachableCode": false, // Raise compiler errors about unreachable code | |
| "forceConsistentCasingInFileNames": true, // Enforce consistent casing in imports | |
| "skipLibCheck": true, // Skip type checking of declaration files for faster builds | |
| // Build and emit behavior | |
| "noEmit": true, // Do not emit compiled files | |
| "incremental": true, // Enable faster rebuilds via incremental compilation | |
| // Experimental & native features | |
| "useDefineForClassFields": true, // Use ECMAScript spec-compliant class fields | |
| "erasableSyntaxOnly": true // Enable Node.js native TS support (types erased) | |
| }, | |
| // Project structure | |
| "include": ["src"], | |
| "exclude": ["node_modules", "dist"] | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "[handlebars]": { | |
| "files.insertFinalNewline": false | |
| }, | |
| "diffEditor.ignoreTrimWhitespace": false, | |
| "diffEditor.renderSideBySide": false, | |
| "editor.codeActionsOnSave": { | |
| "source.fixAll": "explicit" | |
| }, | |
| "editor.defaultFormatter": "esbenp.prettier-vscode", | |
| "editor.fontFamily": "MesloLGM Nerd Font Mono, Menlo, Monaco, DejaVu Sans Mono for Powerline, DejaVuSansMono NF, Consolas, 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback'", | |
| "editor.fontSize": 13, | |
| "editor.formatOnSave": true, | |
| "editor.linkedEditing": true, | |
| "editor.rulers": [80], | |
| "editor.tabSize": 2, | |
| "editor.wordWrap": "on", | |
| "explorer.confirmDragAndDrop": false, | |
| "files.autoSave": "onFocusChange", | |
| "files.eol": "\n", | |
| "files.insertFinalNewline": true, | |
| "files.trimFinalNewlines": true, | |
| "files.trimTrailingWhitespace": true, | |
| "git.blame.editorDecoration.enabled": true, | |
| "github.copilot.nextEditSuggestions.enabled": true, | |
| "gitlens.hovers.enabled": false, | |
| "gitlens.statusBar.enabled": false, | |
| "html.format.indentHandlebars": true, | |
| "html.format.maxPreserveNewLines": 1, | |
| "html.format.wrapAttributes": "force-expand-multiline", | |
| "html.format.wrapLineLength": 80, | |
| "js/ts.implicitProjectConfig.experimentalDecorators": true, | |
| "python.analysis.autoImportCompletions": true, | |
| "stylelint.validate": ["css", "less", "postcss", "scss"], | |
| "terminal.integrated.fontSize": 14, | |
| "typescript.inlayHints.enumMemberValues.enabled": true, | |
| "typescript.inlayHints.functionLikeReturnTypes.enabled": true, | |
| "typescript.inlayHints.parameterTypes.enabled": true, | |
| "typescript.inlayHints.propertyDeclarationTypes.enabled": true, | |
| "typescript.inlayHints.variableTypes.enabled": true, | |
| "workbench.editor.limit.enabled": true, | |
| "workbench.editor.limit.value": 20 | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment