Last active
September 18, 2020 15:21
-
-
Save alysivji/21f08de521f10f6803277a4e81972c5f to your computer and use it in GitHub Desktop.
Revisions
-
alysivji revised this gist
Jun 18, 2020 . 1 changed file with 91 additions and 34 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,46 +1,42 @@ { // Application setting "workbench.colorTheme": "An Old Hope", "window.zoomLevel": 3, "breadcrumbs.enabled": false, "workbench.activityBar.visible": false, "workbench.editor.enablePreview": false, "workbench.editor.showTabs": true, "workbench.editor.tabSizing": "shrink", "workbench.fontAliasing": "default", "workbench.iconTheme": "material-icon-theme", "workbench.list.multiSelectModifier": "alt", "workbench.settings.editor": "json", "workbench.settings.useSplitJSON": true, "workbench.startupEditor": "none", "workbench.statusBar.visible": false, "zenMode.centerLayout": false, "zenMode.hideTabs": false, "terminal.integrated.fontFamily": "Source Code Variable", "extensions.showRecommendationsOnlyOnDemand": true, // Editor setings "editor.fontFamily": "Fira Code", "editor.fontLigatures": true, "editor.fontSize": 13, "editor.lineNumbers": "relative", "editor.minimap.enabled": false, "editor.multiCursorModifier": "alt", "editor.rulers": [ 79, 88, 99, 119 ], "editor.suggestSelection": "first", // Files "files.eol": "\n", "files.associations": { "*.toml": "cfg" }, "files.exclude": { "**/.vscode": true, "**/.git": true, @@ -59,6 +55,11 @@ "files.trimTrailingWhitespace": true, "files.insertFinalNewline": true, // Error Reporting "telemetry.enableCrashReporter": false, "telemetry.enableTelemetry": false, "problems.decorations.enabled": false, // Python VSCode Plugin settings "python.pythonPath": "/Users/alysivji/.virtualenvs/code_everyday370/bin/python", "python.jediEnabled": true, @@ -67,8 +68,8 @@ "python.linting.pylintEnabled": false, "python.linting.flake8Enabled": true, "python.linting.flake8Args": [ "--max-line-length=88", "--ignore=E203,W503" ], "python.formatting.blackPath": "/Users/alysivji/.virtualenvs/code_everyday370/bin/black", "python.formatting.provider": "black", @@ -79,11 +80,25 @@ "editor.tabSize": 2, "editor.insertSpaces": true }, "[groovy]": { "editor.tabSize": 2, "editor.insertSpaces": true, "editor.formatOnSave": true }, "[html]": { "editor.tabSize": 2, "editor.insertSpaces": true }, "[javascript]": { "editor.tabSize": 2, "editor.formatOnSave": true }, "[json]": { "editor.tabSize": 2, "editor.formatOnSave": true }, "[terraform]": { "editor.tabSize": 2, "editor.formatOnSave": true }, "[markdown]": { @@ -94,27 +109,69 @@ "editor.tabSize": 2, "editor.insertSpaces": true }, "[python]": { "editor.tabSize": 4, "editor.rulers": [ 88, 99, 119 ], }, "[yaml]": { "editor.tabSize": 2, "editor.insertSpaces": true }, // Plugin Configuration "docker.showExplorer": false, "vim.mouseSelectionGoesIntoVisualMode": true, "material-icon-theme.showUpdateMessage": false, // Markdown "markdown-toc.depthFrom": 2, "markdown-toc.depthTo": 3, "markdown-toc.detectAndAutoSetSection": false, "markdown-toc.updateOnSave": true, "markdownlint.config": { // "MD001": false, // "MD007": false, }, // TypeScript Settings "typescript.tsdk": "./node_modules/typescript/lib", // Spelling "cSpell.enabled": false, "cSpell.userWords": [ "alysivji", "ansible", "conu", "jsonify", "microservices", "noninvasively", "noqa", "pytest", "sivji", "kubernetes", ], "cSpell.enabledLanguageIds": [ "markdown", ], // GitLens "gitlens.codeLens.enabled": false, "gitlens.currentLine.enabled": false, "gitlens.statusBar.enabled": false, "gitlens.hovers.enabled": false, "gitlens.views.repositories.enabled": false, "gitlens.views.fileHistory.enabled": false, "gitlens.views.lineHistory.enabled": false, "gitlens.views.search.enabled": false, "gitlens.views.compare.enabled": false, "gitlens.menus": false, // Presentation Settings // "workbench.colorTheme": "Quiet Light", // "editor.rulers": [], // "editor.renderIndentGuides": false, // "editor.lineNumbers": "on", // "editor.hover.enabled": false, } -
alysivji revised this gist
Oct 13, 2018 . 1 changed file with 21 additions and 5 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -12,11 +12,13 @@ ], "breadcrumbs.enabled": false, "telemetry.enableCrashReporter": false, "telemetry.enableTelemetry": false, "terminal.integrated.fontFamily": "Source Code Pro", "terminal.integrated.fontWeight": "700", "window.zoomLevel": 0, "workbench.activityBar.visible": false, "workbench.colorTheme": "Dracula", "workbench.editor.enablePreview": false, "workbench.editor.showTabs": true, "workbench.editor.tabSizing": "shrink", @@ -73,29 +75,43 @@ // Language Configuration "editor.detectIndentation": false, "[css]": { "editor.tabSize": 2, "editor.insertSpaces": true }, "[html]": { "editor.tabSize": 2, "editor.insertSpaces": true }, "[javascript]": { "editor.formatOnSave": true }, "[markdown]": { "editor.tabSize": 2, "editor.insertSpaces": true }, "[ocaml]": { "editor.tabSize": 2, "editor.insertSpaces": true }, // Plugin Configuration "docker.showExplorer": false, "extensions.showRecommendationsOnlyOnDemand": true, "vim.mouseSelectionGoesIntoVisualMode": true, "markdown-toc.depthFrom": 2, "markdown-toc.depthTo": 3, "markdown-toc.updateOnSave": true, "markdownlint.config": { // "MD001": false, // "MD007": false, }, // Message settings "material-icon-theme.showUpdateMessage": false, // TypeScript Settings "typescript.tsdk": "./node_modules/typescript/lib", // Presentation Settings // "workbench.colorTheme": "Default Light+", -
alysivji revised this gist
Oct 5, 2018 . 1 changed file with 4 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -13,9 +13,10 @@ "breadcrumbs.enabled": false, "terminal.integrated.fontFamily": "Source Code Pro", "telemetry.enableTelemetry": false, "telemetry.enableCrashReporter": false, "window.zoomLevel": 0, "workbench.activityBar.visible": false, "workbench.editor.enablePreview": false, "workbench.editor.showTabs": true, "workbench.editor.tabSizing": "shrink", @@ -94,9 +95,10 @@ // TypeScript Settings "typescript.tsdk": "./node_modules/typescript/lib", "workbench.colorTheme": "Solarized Dark", // Presentation Settings // "workbench.colorTheme": "Default Light+", // "editor.rulers": [], // "editor.renderIndentGuides": false, } -
alysivji revised this gist
Sep 11, 2018 . 2 changed files with 48 additions and 5 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -8,6 +8,7 @@ { "key": "cmd+h", "command": "editor.unfoldAll", "when": "editorTextFocus" }, { @@ -39,5 +40,47 @@ "key": "ctrl+`", "command": "workbench.action.terminal.focus", "when": "!terminalFocus" }, { "key": "shift+cmd+g", "command": "workbench.view.scm" }, { "key": "ctrl+shift+g", "command": "-workbench.view.scm" }, { "key": "ctrl+shift+alt+cmd+g", "command": "editor.action.previousMatchFindAction", "when": "editorFocus" }, { "key": "shift+cmd+g", "command": "-editor.action.previousMatchFindAction", "when": "editorFocus" }, { "key": "cmd+1", "command": "-numberedBookmarks.jumpToBookmark1", "when": "editorTextFocus" }, { "key": "cmd+2", "command": "-numberedBookmarks.jumpToBookmark2", "when": "editorTextFocus" }, { "key": "cmd+3", "command": "-numberedBookmarks.jumpToBookmark3", "when": "editorTextFocus" }, { "key": "shift+cmd+a", "command": "workbench.view.extension.postgres-explorer" }, { "key": "f9", "command": "sortLines.sortLinesCaseInsensitive", "when": "editorTextFocus" } ] 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 charactersOriginal file line number Diff line number Diff line change @@ -12,20 +12,21 @@ ], "breadcrumbs.enabled": false, "terminal.integrated.fontFamily": "Source Code Pro", "window.zoomLevel": 0, "workbench.activityBar.visible": false, "workbench.colorTheme": "Ayu Mirage", "workbench.editor.enablePreview": false, "workbench.editor.showTabs": true, "workbench.editor.tabSizing": "shrink", "workbench.fontAliasing": "default", "workbench.iconTheme": "material-icon-theme", "workbench.list.multiSelectModifier": "alt", "workbench.settings.editor": "json", "workbench.startupEditor": "none", "workbench.statusBar.visible": false, "zenMode.centerLayout": false, "zenMode.hideTabs": false, // Github "github.hosts": [ @@ -36,7 +37,6 @@ } ], "problems.decorations.enabled": false, "files.exclude": { "**/.vscode": true, @@ -99,4 +99,4 @@ // "workbench.colorTheme": "Default Light+", // "editor.rulers": [], // "editor.renderIndentGuides": false, } -
alysivji revised this gist
Sep 11, 2018 . 1 changed file with 50 additions and 64 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,54 +1,43 @@ { // Editor setings "editor.fontFamily": "Fira Code", "editor.fontLigatures": true, "editor.fontSize": 13, "editor.fontWeight": "bold", "editor.lineNumbers": "relative", "editor.minimap.enabled": false, "editor.multiCursorModifier": "alt", "editor.rulers": [ 79, 99 ], "breadcrumbs.enabled": false, "window.zoomLevel": 0, "workbench.activityBar.visible": false, "workbench.colorTheme": "Ayu Mirage", "workbench.editor.enablePreview": false, "workbench.editor.showTabs": true, "workbench.editor.tabSizing": "shrink", "workbench.fontAliasing": "default", "workbench.list.multiSelectModifier": "alt", "workbench.settings.editor": "json", "workbench.startupEditor": "none", "workbench.statusBar.visible": false, "workbench.iconTheme": "material-icon-theme", "zenMode.hideTabs": false, "zenMode.centerLayout": false, // Github "github.hosts": [ { "host": "https://github.com", "username": "oauth", "token": "system" } ], "terminal.integrated.fontFamily": "Source Code Pro", "problems.decorations.enabled": false, "files.exclude": { "**/.vscode": true, "**/.git": true, @@ -64,39 +53,24 @@ "**/.mypy_cache": true, "**/.ipynb_checkpoints": true, }, "files.trimTrailingWhitespace": true, "files.insertFinalNewline": true, // Python VSCode Plugin settings "python.pythonPath": "/Users/alysivji/.virtualenvs/code_everyday370/bin/python", "python.jediEnabled": true, "python.linting.enabled": true, "python.linting.mypyEnabled": false, "python.linting.pylintEnabled": false, "python.linting.flake8Enabled": true, "python.linting.flake8Args": [ "--max-line-length=99", "" // --ignore=E402 ], "python.formatting.blackPath": "/Users/alysivji/.virtualenvs/code_everyday370/bin/black", "python.formatting.provider": "black", // Language Configuration "editor.detectIndentation": false, "[html]": { "editor.tabSize": 2, @@ -106,11 +80,23 @@ "editor.tabSize": 2, "editor.insertSpaces": true }, "[javascript]": { "editor.formatOnSave": true }, // Plugin Configuration "docker.showExplorer": false, "extensions.showRecommendationsOnlyOnDemand": true, "vim.mouseSelectionGoesIntoVisualMode": true, // Message settings "material-icon-theme.showUpdateMessage": false, // TypeScript Settings "typescript.tsdk": "./node_modules/typescript/lib", // Presentation Settings // "workbench.colorTheme": "Default Light+", // "editor.rulers": [], // "editor.renderIndentGuides": false, } -
alysivji revised this gist
Aug 5, 2018 . 1 changed file with 51 additions and 23 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -1,16 +1,41 @@ { // Editor setings "editor.fontFamily": "Fira Code", "editor.fontSize": 13, "editor.fontWeight": "bold", "editor.fontLigatures": true, "editor.lineNumbers": "relative", "editor.multiCursorModifier": "alt", "editor.rulers": [ 79, 99 ], "workbench.editor.enablePreview": false, "workbench.list.multiSelectModifier": "alt", // Python settings "python.pythonPath": "/Users/alysivji/.virtualenvs/code_everyday370/bin/python", "python.jediEnabled": true, "python.linting.enabled": true, "python.linting.mypyEnabled": false, "python.linting.pylintEnabled": false, "python.linting.flake8Enabled": true, "python.linting.flake8Args": [ "--max-line-length=99", "" // --ignore=E402 ], "python.formatting.blackPath": "/Users/alysivji/.virtualenvs/code_everyday370/bin/black", "python.formatting.provider": "black", // GitLens Setting "gitlens.currentLine.enabled": false, "gitlens.codeLens.enabled": false, "gitlens.gitExplorer.enabled": false, "gitlens.statusBar.enabled": false, "gitlens.historyExplorer.enabled": true, // VSCode Display Settings "workbench.colorTheme": "Cobalt2", "window.zoomLevel": 0, "workbench.activityBar.visible": false, "workbench.statusBar.visible": false, @@ -35,32 +60,26 @@ "**/.pyc": true, "**/.cache": true, "**/.pytest_cache": true, "**/.hypothesis": true, "**/.mypy_cache": true, "**/.ipynb_checkpoints": true, }, "extensions.showRecommendationsOnlyOnDemand": true, // File Settings "files.trimTrailingWhitespace": true, "files.insertFinalNewline": true, // JavaScript settings // Set the default "editor.formatOnSave": false, // Enable per-language "[javascript]": { "editor.formatOnSave": true }, // Vim settings "vim.mouseSelectionGoesIntoVisualMode": true, // Message settings "material-icon-theme.showUpdateMessage": false, "gitlens.advanced.messages": { @@ -71,18 +90,27 @@ "suppressLineUncommittedWarning": false, "suppressNoRepositoryWarning": false, "suppressResultsExplorerNotice": true, "suppressShowKeyBindingsNotice": true, "suppressUpdateNotice": false, "suppressWelcomeNotice": true }, "workbench.editor.showTabs": true, // Spacing Configuration "editor.detectIndentation": false, "[html]": { "editor.tabSize": 2, "editor.insertSpaces": true }, "[css]": { "editor.tabSize": 2, "editor.insertSpaces": true }, // TypeScript Settings "typescript.tsdk": "./node_modules/typescript/lib", // Presentation Settings // "workbench.colorTheme": "Default Light+", // "editor.rulers": [], } -
alysivji revised this gist
Mar 20, 2018 . 1 changed file with 10 additions and 3 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -6,15 +6,16 @@ "editor.fontLigatures": true, "editor.lineNumbers": "relative", "editor.multiCursorModifier": "alt", "editor.rulers": [79, 99], "workbench.editor.enablePreview": false, "workbench.list.multiSelectModifier": "alt", // VSCode Display Settings "window.zoomLevel": 0, "workbench.activityBar.visible": false, "workbench.statusBar.visible": false, "zenMode.hideTabs": false, "zenMode.centerLayout": false, "workbench.iconTheme": "material-icon-theme", "workbench.editor.tabSizing": "shrink", "workbench.startupEditor": "none", @@ -24,6 +25,7 @@ "problems.decorations.enabled": false, "docker.showExplorer": false, "files.exclude": { "**/.vscode": true, "**/.git": true, "**/.svn": true, "**/.hg": true, @@ -32,6 +34,7 @@ "**/__pycache__": true, "**/.pyc": true, "**/.cache": true, "**/.pytest_cache": true, "**/.mypy_cache": true, }, @@ -71,11 +74,15 @@ "suppressUpdateNotice": false, "suppressWelcomeNotice": true }, "workbench.editor.showTabs": true, "workbench.colorTheme": "Dracula", // "disableLigatures.ligatures": [ // "www" // ], // // Presentation Settings // "workbench.colorTheme": "Default Light+", // "editor.rulers": [], } -
alysivji revised this gist
Feb 8, 2018 . 1 changed file with 2 additions and 5 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -13,13 +13,15 @@ // VSCode Display Settings "window.zoomLevel": 0, "workbench.activityBar.visible": false, "workbench.statusBar.visible": false, "workbench.colorTheme": "Dracula Soft", "workbench.iconTheme": "material-icon-theme", "workbench.editor.tabSizing": "shrink", "workbench.startupEditor": "none", "editor.minimap.enabled": false, "terminal.integrated.fontFamily": "Source Code Pro", "workbench.fontAliasing": "default", "problems.decorations.enabled": false, "docker.showExplorer": false, "files.exclude": { "**/.git": true, @@ -39,9 +41,6 @@ // Python settings "python.pythonPath": "/Users/alysivji/.virtualenvs/code_everyday/bin/python", "python.linting.enabled": true, "python.linting.mypyEnabled": false, "python.linting.pylintEnabled": false, @@ -77,8 +76,6 @@ // ], // // Presentation Settings // "workbench.colorTheme": "Default Light+", // "editor.rulers": [], } -
alysivji revised this gist
Feb 7, 2018 . 1 changed file with 5 additions and 3 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -8,16 +8,18 @@ "editor.multiCursorModifier": "alt", "editor.rulers": [79], "workbench.editor.enablePreview": false, "workbench.list.multiSelectModifier": "alt", // VSCode Display Settings "window.zoomLevel": 0, "workbench.activityBar.visible": false, "workbench.colorTheme": "Dracula Soft", "workbench.iconTheme": "material-icon-theme", "workbench.editor.tabSizing": "shrink", "workbench.startupEditor": "none", "editor.minimap.enabled": false, "terminal.integrated.fontFamily": "Source Code Pro", "workbench.fontAliasing": "default", "docker.showExplorer": false, "files.exclude": { "**/.git": true, @@ -49,7 +51,7 @@ ], // Vim settings "vim.mouseSelectionGoesIntoVisualMode": true, // GitLens Setting "gitlens.currentLine.enabled": false, @@ -76,7 +78,7 @@ // // Presentation Settings // "editor.minimap.enabled": false, "workbench.statusBar.visible": false, // "workbench.colorTheme": "Default Light+", // "editor.rulers": [], } -
alysivji revised this gist
Feb 7, 2018 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -52,7 +52,7 @@ "vim.mouseSelectionGoesIntoVisualMode": false, // GitLens Setting "gitlens.currentLine.enabled": false, "gitlens.codeLens.enabled": false, "gitlens.gitExplorer.enabled": true, "gitlens.statusBar.enabled": false, -
alysivji revised this gist
Jan 23, 2018 . 1 changed file with 4 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -11,12 +11,14 @@ // VSCode Display Settings "window.zoomLevel": 0, "workbench.activityBar.visible": false, "workbench.colorTheme": "Dracula Soft", "workbench.iconTheme": "material-icon-theme", "workbench.editor.tabSizing": "shrink", "workbench.startupEditor": "newUntitledFile", "editor.minimap.enabled": false, "terminal.integrated.fontFamily": "Source Code Pro", "docker.showExplorer": false, "files.exclude": { "**/.git": true, "**/.svn": true, @@ -64,6 +66,7 @@ "suppressGitVersionWarning": false, "suppressLineUncommittedWarning": false, "suppressNoRepositoryWarning": false, "suppressResultsExplorerNotice": true, "suppressUpdateNotice": false, "suppressWelcomeNotice": true }, @@ -74,7 +77,6 @@ // // Presentation Settings // "editor.minimap.enabled": false, // "workbench.statusBar.visible": false, // "workbench.colorTheme": "Default Light+", // "editor.rulers": [], } -
alysivji revised this gist
Jan 13, 2018 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -73,8 +73,8 @@ // // Presentation Settings // "editor.minimap.enabled": false, // "workbench.statusBar.visible": false, "workbench.activityBar.visible": false, // "workbench.colorTheme": "Default Light+", // "editor.rulers": [], } -
alysivji revised this gist
Jan 13, 2018 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -39,7 +39,7 @@ "python": "/Users/alysivji/.virtualenvs/code_everyday/bin/python" }, "python.linting.enabled": true, "python.linting.mypyEnabled": false, "python.linting.pylintEnabled": false, "python.linting.flake8Enabled": true, "python.linting.flake8Args": [ -
alysivji revised this gist
Jan 13, 2018 . 1 changed file with 4 additions and 3 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -52,7 +52,7 @@ // GitLens Setting "gitlens.blame.line.enabled": false, "gitlens.codeLens.enabled": false, "gitlens.gitExplorer.enabled": true, "gitlens.statusBar.enabled": false, // Message settings @@ -73,7 +73,8 @@ // // Presentation Settings // "editor.minimap.enabled": false, "workbench.statusBar.visible": false, // "workbench.activityBar.visible": false, // "workbench.colorTheme": "Default Light+", // "editor.rulers": [], } -
alysivji revised this gist
Jan 11, 2018 . 1 changed file with 22 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -6,6 +6,8 @@ "editor.fontLigatures": true, "editor.lineNumbers": "relative", "editor.multiCursorModifier": "alt", "editor.rulers": [79], "workbench.editor.enablePreview": false, // VSCode Display Settings "window.zoomLevel": 0, @@ -47,12 +49,31 @@ // Vim settings "vim.mouseSelectionGoesIntoVisualMode": false, // GitLens Setting "gitlens.blame.line.enabled": false, "gitlens.codeLens.enabled": false, "gitlens.gitExplorer.enabled": false, "gitlens.statusBar.enabled": false, // Message settings "material-icon-theme.showUpdateMessage": false, "gitlens.advanced.messages": { "suppressCommitHasNoPreviousCommitWarning": false, "suppressCommitNotFoundWarning": false, "suppressFileNotUnderSourceControlWarning": false, "suppressGitVersionWarning": false, "suppressLineUncommittedWarning": false, "suppressNoRepositoryWarning": false, "suppressUpdateNotice": false, "suppressWelcomeNotice": true }, // "disableLigatures.ligatures": [ // "www" // ], // // Presentation Settings // "editor.minimap.enabled": false, // "workbench.statusBar.visible": false, // "workbench.activityBar.visible": false, // "workbench.colorTheme": "Default Light+", } -
alysivji revised this gist
Dec 25, 2017 . 1 changed file with 0 additions and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -8,7 +8,6 @@ { "key": "cmd+h", "command": "editor.unfoldAll", "when": "editorTextFocus" }, { -
alysivji revised this gist
Dec 25, 2017 . No changes.There are no files selected for viewing
-
alysivji created this gist
Dec 25, 2017 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,44 @@ // Place your key bindings in this file to overwrite the defaults [ { "key": "cmd+g", "command": "editor.foldAll", "when": "editorTextFocus" }, { "key": "cmd+h", "command": "editor.unfoldAll", "when": "editorTextFocus" }, { "key": "cmd+y", "command": "redo", "when": "editorTextFocus && !editorReadonly" }, { "key": "ctrl+alt+t", "command": "workbench.action.tasks.test" }, { "key": "ctrl+alt+k", "command": "-code-runner.runCustomCommand" }, { "key": "ctrl+alt+j", "command": "-code-runner.runByLanguage" }, { "key": "cmd+r", "command": "workbench.action.openRecent" }, { "key": "ctrl+`", "command": "workbench.action.terminal.toggleTerminal" }, { "key": "ctrl+`", "command": "workbench.action.terminal.focus", "when": "!terminalFocus" } ] 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,58 @@ // Place your settings in this file to overwrite default and user settings. { // Editor setings "editor.fontFamily": "Fira Code", "editor.fontSize": 13, "editor.fontLigatures": true, "editor.lineNumbers": "relative", "editor.multiCursorModifier": "alt", // VSCode Display Settings "window.zoomLevel": 0, "workbench.colorTheme": "Dracula Soft", "workbench.iconTheme": "material-icon-theme", "workbench.editor.tabSizing": "shrink", "workbench.startupEditor": "welcomePage", "editor.minimap.enabled": false, "terminal.integrated.fontFamily": "Source Code Pro", "files.exclude": { "**/.git": true, "**/.svn": true, "**/.hg": true, "**/CVS": true, "**/.DS_Store": true, "**/__pycache__": true, "**/.pyc": true, "**/.cache": true, "**/.mypy_cache": true, }, // File Settings "files.trimTrailingWhitespace": true, "files.insertFinalNewline": true, // Python settings "python.pythonPath": "/Users/alysivji/.virtualenvs/code_everyday/bin/python", "code-runner.executorMap": { "python": "/Users/alysivji/.virtualenvs/code_everyday/bin/python" }, "python.linting.enabled": true, "python.linting.mypyEnabled": true, "python.linting.pylintEnabled": false, "python.linting.flake8Enabled": true, "python.linting.flake8Args": [ "" // --ignore=E402 ], // Vim settings "vim.mouseSelectionGoesIntoVisualMode": false, // Message settings "material-icon-theme.showUpdateMessage": false, // // Presentation Settings // "editor.minimap.enabled": false, // "workbench.statusBar.visible": false, // "workbench.activityBar.visible": false, // "workbench.colorTheme": "Default Light+", } 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,12 @@ { "version": "0.1.0", "tasks": [ { "taskName": "tests", "command": "/Users/alysivji/.virtualenvs/code_everyday/bin/python", "args": ["-m", "pytest"], "isShellCommand": true, "isTestCommand": true, } ] }