Skip to content

Instantly share code, notes, and snippets.

@gdamjan
Last active December 9, 2023 14:02
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 gdamjan/e10c13771bea2a7829a5b2e7631525bf to your computer and use it in GitHub Desktop.
Save gdamjan/e10c13771bea2a7829a5b2e7631525bf to your computer and use it in GitHub Desktop.
vscode settings
// Place your key bindings in this file to override the defaultsauto[]
// ~/.config/Code/User/keybindings.json
[
{
"key": "ctrl+g",
"command": "editor.action.nextMatchFindAction",
"when": "editorFocus"
}
]
// ~/.config/Code/User/settings.json
{
"workbench.colorTheme": "Visual Studio Light",
"workbench.startupEditor": "none",
"workbench.editor.enablePreview": false,
"files.insertFinalNewline": true,
"files.trimTrailingWhitespace": true,
"files.trimFinalNewlines": true,
"rust-analyzer.completion.callable.snippets": "add_parentheses",
"rust-analyzer.inlayHints.chainingHints.enable": false,
"editor.inlayHints.enabled": "offUnlessPressed",
"svelte.enable-ts-plugin": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment