Skip to content

Instantly share code, notes, and snippets.

@nimaipatel
Created August 26, 2025 06:23
Show Gist options
  • Save nimaipatel/84264649cb844a7836869b4e4e2a872e to your computer and use it in GitHub Desktop.
Save nimaipatel/84264649cb844a7836869b4e4e2a872e to your computer and use it in GitHub Desktop.
asdf
{
// This line has 120 characters -----------------------------------------------------------------------------------$
// legibility test line: !@#$%^&*()_+|~=`{}[]:";'<>?,./abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789
"editor.fontFamily": "Iosevka Fixed Extended",
"editor.fontSize": 15,
"window.autoDetectColorScheme": true,
"makefile.configureOnOpen": false,
"cmake.showOptionsMovedNotification": false,
"C_Cpp.codeAnalysis.clangTidy.enabled": true,
"[c]": {
"editor.defaultFormatter": "xaver.clang-format"
},
"files.autoSave": "afterDelay",
"github.copilot.advanced": {},
"security.workspace.trust.untrustedFiles": "open",
"terminal.integrated.macOptionIsMeta": true,
"debug.toolBarLocation": "commandCenter",
"github.copilot.nextEditSuggestions.enabled": true,
"workbench.activityBar.location": "bottom",
"vscode-neovim.afterInitConfig": [
"nnoremap { {zz",
"nnoremap } }zz",
"set clipboard=unnamedplus",
"set tabstop=4",
"set shiftwidth=4",
"set expandtab",
"set autoindent",
"set smartindent",
"set wrap",
"set linebreak",
"set showcmd",
"set incsearch",
"set ignorecase",
"set smartcase",
],
"editor.cursorSurroundingLines": 15,
"workbench.editor.tabSizing": "fixed",
"editor.minimap.enabled": false,
"editor.quickSuggestions": {
"other": "off",
"comments": "off",
"strings": "off"
},
"editor.suggestOnTriggerCharacters": false,
"github.copilot.enable": {
"*": false,
"plaintext": false,
"markdown": false,
"scminput": false
}
}
// Place your key bindings in this file to override the defaults
[
{
"key": "ctrl+shift+space",
"command": "editor.action.inlineSuggest.trigger",
"when": "editorTextFocus"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment