Skip to content

Instantly share code, notes, and snippets.

@alternacrow
Last active September 2, 2023 12:13
Show Gist options
  • Save alternacrow/e9f5fcb9d2a77914926ec479c789615e to your computer and use it in GitHub Desktop.
Save alternacrow/e9f5fcb9d2a77914926ec479c789615e to your computer and use it in GitHub Desktop.
VSCode
{
/* ------------------------------------------------------------------
* Original
------------------------------------------------------------------ */
/**
* window
*/
"window.title": "${rootName} - ${dirty}${activeEditorMedium}",
"window.zoomLevel": -1,
/**
* editor
*/
"editor.fontSize": 13,
"editor.fontFamily": "FiraCode Nerd Font",
"editor.wordWrap": "on",
"editor.inlineSuggest.enabled": true,
"editor.minimap.enabled": false,
"editor.tokenColorCustomizations": {
"comments": {
"foreground": "#d3a5bc"
}
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"[rust]": {
"editor.defaultFormatter": "rust-lang.rust-analyzer"
},
"editor.formatOnSave": true,
/**
* terminal
*/
"terminal.integrated.fontFamily": "FiraCode Nerd Font",
"terminal.integrated.fontSize": 13,
/*
* workbench
*/
"workbench.colorTheme": "Dracula",
"workbench.editor.enablePreview": false,
"workbench.editor.enablePreviewFromQuickOpen": false,
"workbench.startupEditor": "none",
/**
* emmet
*/
"emmet.triggerExpansionOnTab": true,
/* ------------------------------------------------------------------
* Extensions
------------------------------------------------------------------ */
/**
* rust-analyzer
*/
"rust-analyzer.inlayHints.typeHints.enable": false,
/**
* vim
*/
"vim.easymotion": true,
"vim.easymotionKeys": "sdfghjkl",
"vim.incsearch": true,
"vim.useSystemClipboard": true,
"vim.useCtrlKeys": true,
"vim.hlsearch": true,
"vim.visualstar": true,
"vim.highlightedyank.enable": true,
"vim.insertModeKeyBindings": [
{
"before": ["j", "j"],
"after": ["<Esc>"]
}
],
"vim.normalModeKeyBindingsNonRecursive": [
{
"before": ["<leader>", "d"],
"after": ["d", "d"]
},
{
"before": ["<C-n>"],
"commands": [":nohl"]
}
],
"vim.leader": "<space>",
/**
* copilot
*/
"github.copilot.enable": {
"*": true,
"plaintext": false,
"markdown": true,
"scminput": false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment