Skip to content

Instantly share code, notes, and snippets.

@cold-logic
Last active January 28, 2024 02:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cold-logic/b3e9f399c348a9f955edf8036f858c96 to your computer and use it in GitHub Desktop.
Save cold-logic/b3e9f399c348a9f955edf8036f858c96 to your computer and use it in GitHub Desktop.
My favorite VS Code extensions
  • Code Runner - Run code directly and pipe output into the terminal.
  • Cobalt2 Theme - Dark blue with vibrant colors
  • Better Align - Align code intent using a specific delimiter
  • Indent Guides - Improves visibility of where you are in indented code blocks
    • Add the following to your User Settings to style the guides:
    // Guides extension
    "guides.overrideDefault": true,
    "guides.sendUsagesAndStats": false,
    "guides.active.width": 2,
    "guides.active.color.dark": "rgba(232, 232, 65, 0.75)",
    "guides.active.style": "solid",
    
  • Mark Jump - List and jump to marked comments
  • Count Selected Lines - Shows the total of selected lines in the status bar
  • Transpose - Swap/flip two selections
  • VS Live Share - Share your session with other users and paired program
  • map-replace.js - Replace multi-selection text with custom JavaScript function. Handy for performing math, concatenation and other operations on multiple lines
  • Quick Select - Improves the abilities of quick select to grow the selection from current position until it reaches a desired boundary
  • Foam Notes - Personal knowledge management and sharing system inspired by Roam Research
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment