this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Minor vscode settings

+20 -6
+13 -1
.config/Code/User/keybindings.json
··· 166 166 "key": "alt+space", 167 167 "when": "editorHasCompletionItemProvider && editorTextFocus && !editorReadonly", 168 168 }, 169 + // Try to keep from accidentally inserting non-breaking spaces on macOS 170 + { 171 + "key": "alt+space", 172 + "command": "workbench.action.terminal.sendSequence", 173 + "args": { 174 + "text": " ", 175 + }, 176 + "when": "terminalFocus", 177 + }, 169 178 { 170 179 "command": "-editor.action.triggerSuggest", 171 180 "key": "ctrl+space", ··· 631 640 }, 632 641 "when": "isInDiffEditor && !commentEditorFocused && github:inReviewMode && (resourcePath in github:viewedFiles || resourcePath in github:unviewedFiles) && neovim.mode != 'insert'", 633 642 }, 643 + // TODO: https://github.com/microsoft/vscode/issues/199344 would be nice to have 644 + // for navigating the multiDiff editor 634 645 { 635 646 "key": "cmd+alt+shift+i", 636 647 "command": "workbench.action.inspectContextKeys", ··· 691 702 { 692 703 "key": "shift+d", 693 704 "command": "toggle.diff.renderSideBySide", 694 - "when": "editorTextFocus && isInDiffEditor && !commentEditorFocused", 705 + // TODO: this seems to have no effect in multi-diff editor :( 706 + "when": "editorTextFocus && (isInDiffEditor || inMultiDiffEditor) && !commentEditorFocused", 695 707 }, 696 708 { 697 709 "key": "shift+e",
+6 -5
.config/Code/User/settings.json
··· 99 99 ["[", "]"], 100 100 ["<", ">"], 101 101 ["{", "}"], 102 - ] 102 + ], 103 103 }, 104 104 "[robotframework]": { 105 105 "editor.formatOnSave": false, ··· 165 165 // vscode bug, a copilot bug, or a bug in Apc Customize UI++ 166 166 ".inline-chat .view-lines, .codelens-decoration, .suggest-details.no-type": { 167 167 "font-feature-settings": "inherit !important", 168 - } 168 + }, 169 169 }, 170 170 171 171 // TODO: reorganize the remaining sections into extension-specific vs VSCode ··· 230 230 "--background-index" 231 231 ], 232 232 "clangd.checkUpdates": true, 233 - "clangd.path": "/Users/ianchamberlain/Library/Application Support/Code/User/globalStorage/llvm-vs-code-extensions.vscode-clangd/install/17.0.3/clangd_17.0.3/bin/clangd", 233 + "clangd.path": "/Users/ichamberlain/Library/Application Support/Code/User/globalStorage/llvm-vs-code-extensions.vscode-clangd/install/17.0.3/clangd_17.0.3/bin/clangd", 234 234 "clangd.onConfigChanged": "restart", 235 235 236 236 "cmake.ignoreCMakeListsMissing": true, ··· 675 675 "*.sls": "sls", 676 676 "*.unity": "yaml", 677 677 "*Brewfile*": "ruby", 678 + "Brewfile.lock.json": "json", 678 679 "*dockerfile*": "dockerfile", 679 680 "*gitconfig*": "ini", 680 681 ".bazelignore": "gitignore", ··· 700 701 ".wokeignore": "gitignore", 701 702 "*.bttpreset": "json", 702 703 "Jenkinsfile*": "groovy", 703 - ".Brewfile": "ruby", 704 704 "*.mmd": "Mermaid", 705 705 "*.pica": "pica", 706 706 "CODEOWNERS": "codeowners", ··· 1320 1320 "vscode-neovim.logLevel": "warn", 1321 1321 "vscode-neovim.logOutputToConsole": false, 1322 1322 "vscode-neovim.neovimClean": false, 1323 + "vscode-neovim.afterInitConfig": [], 1323 1324 "vscode-neovim.neovimExecutablePaths.darwin": "nvim", 1324 1325 "vscode-neovim.neovimWidth": 2000, 1325 - "vscode-neovim.statusLineSeparator": " ♦ ", 1326 + "vscode-neovim.statusLineSeparator": " ⏐ ", // alternatively maybe § but it's a bit noisy 1326 1327 "vscode-neovim.highlightGroups.highlights": { 1327 1328 "CurSearch": { 1328 1329 "backgroundColor": "theme.editor.findMatchBackground",
.config/yadm/alt/.ssh/known_hosts##class.work

This is a binary file and will not be displayed.

+1
.gitconfig
··· 57 57 # Override 'submodule.recurse' to make rpush work without warnings 58 58 recurseSubmodules = no 59 59 autoSetupRemote = true 60 + default = current 60 61 [pull] 61 62 rebase = false 62 63 [commit]
Library/Application Support/lghub/settings.db

This is a binary file and will not be displayed.