Skip to content

Instantly share code, notes, and snippets.

@Bktero
Last active December 15, 2023 11:18

Revisions

  1. Bktero revised this gist Dec 15, 2023. 1 changed file with 4 additions and 0 deletions.
    4 changes: 4 additions & 0 deletions extensions.md
    Original file line number Diff line number Diff line change
    @@ -7,6 +7,10 @@
    * [Markdown Preview Mermaid Support](https://marketplace.visualstudio.com/items?itemName=bierner.markdown-mermaid)
    * [Mermaid Markdown Syntax Highlighting](https://marketplace.visualstudio.com/items?itemName=bpruitt-goddard.mermaid-markdown-syntax-highlighting)

    ## Spell

    * [Spell Right](https://marketplace.visualstudio.com/items?itemName=ban.spellright)

    ## Text helpers

    * [Unique Lines](https://marketplace.visualstudio.com/items?itemName=bibhasdn.unique-lines)
  2. Bktero revised this gist Dec 15, 2023. No changes.
  3. Bktero revised this gist Oct 19, 2023. 1 changed file with 14 additions and 0 deletions.
    14 changes: 14 additions & 0 deletions extensions.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,14 @@
    # Extensions

    ## Markdown

    * [markdownlint](https://marketplace.visualstudio.com/items?itemName=DavidAnson.vscode-markdownlint)
    * [Markdown All in One](https://marketplace.visualstudio.com/items?itemName=yzhang.markdown-all-in-one)
    * [Markdown Preview Mermaid Support](https://marketplace.visualstudio.com/items?itemName=bierner.markdown-mermaid)
    * [Mermaid Markdown Syntax Highlighting](https://marketplace.visualstudio.com/items?itemName=bpruitt-goddard.mermaid-markdown-syntax-highlighting)

    ## Text helpers

    * [Unique Lines](https://marketplace.visualstudio.com/items?itemName=bibhasdn.unique-lines)

    * []()
  4. Bktero revised this gist Jan 17, 2023. 1 changed file with 1 addition and 0 deletions.
    1 change: 1 addition & 0 deletions general_settings.json
    Original file line number Diff line number Diff line change
    @@ -13,6 +13,7 @@

    # For the "CodeRunner" plugin
    "code-runner.clearPreviousOutput": true,
    "code-runner.runInTerminal": true|false,

    # For the "Spell Right" plugin
    "spellright.language": [
  5. Bktero revised this gist Feb 23, 2022. 1 changed file with 3 additions and 0 deletions.
    3 changes: 3 additions & 0 deletions general_settings.json
    Original file line number Diff line number Diff line change
    @@ -2,6 +2,9 @@
    "files.autoSave": "afterDelay",
    "files.autoSaveDelay": 50,

    # Hide the minimap
    "editor.minimap.enabled": false

    # Draw vertical bars in the editor
    "editor.rulers": [
    80,
  6. Bktero revised this gist Dec 15, 2021. 1 changed file with 7 additions and 0 deletions.
    7 changes: 7 additions & 0 deletions general_settings.json
    Original file line number Diff line number Diff line change
    @@ -1,9 +1,16 @@
    # Enable autosave
    "files.autoSave": "afterDelay",
    "files.autoSaveDelay": 50,

    # Draw vertical bars in the editor
    "editor.rulers": [
    80,
    120
    ],

    # For the "CodeRunner" plugin
    "code-runner.clearPreviousOutput": true,

    # For the "Spell Right" plugin
    "spellright.language": [
    "en"
  7. Bktero revised this gist Mar 19, 2021. 1 changed file with 15 additions and 0 deletions.
    15 changes: 15 additions & 0 deletions general_settings.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,15 @@
    # Draw vertical bars in the editor
    "editor.rulers": [
    80,
    120
    ],

    # For the "Spell Right" plugin
    "spellright.language": [
    "en"
    ],
    "spellright.documentTypes": [
    "latex",
    "plaintext",
    "markdown"
    ],
  8. Bktero revised this gist Mar 19, 2021. 1 changed file with 2 additions and 1 deletion.
    3 changes: 2 additions & 1 deletion python_settings.json
    Original file line number Diff line number Diff line change
    @@ -1,6 +1,7 @@
    "python.pythonPath": "C:\\some\\path\to\\python.exe",


    # Format but don't wrap line with 80 characeter wide columns
    # See https://stackoverflow.com/a/48055385/12342718
    "python.formatting.provider": "autopep8",
    "python.formatting.autopep8Args": [
    "--max-line-length=200"
  9. Bktero created this gist Mar 19, 2021.
    7 changes: 7 additions & 0 deletions python_settings.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,7 @@
    "python.pythonPath": "C:\\some\\path\to\\python.exe",


    "python.formatting.provider": "autopep8",
    "python.formatting.autopep8Args": [
    "--max-line-length=200"
    ],