Created
August 26, 2025 06:23
-
-
Save nimaipatel/84264649cb844a7836869b4e4e2a872e to your computer and use it in GitHub Desktop.
asdf
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// 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