this repo has no description
0
fork

Configure Feed

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

Lots of various vscode settings

+50 -25
+46 -24
.config/Code/User/settings.json
··· 182 182 183 183 "apc.imports": [ 184 184 // ${userHome} is supposed to work here, but doesn't seem to. 185 - // I might want to consider moving all the other style settings into 186 - // this file as well, but it's kind of annoying so idk 187 185 "/Users/ichamberlain/.config/Code/User/custom.css", 186 + "/Users/ianchamberlain/.config/Code/User/custom.css", 188 187 ], 189 188 "apc.monospace.font.family": "Monaspace Argon Var", 190 189 "apc.iframe.style": { ··· 192 191 "font-family": "'Monaspace Argon Var', 'Input Mono', Monaco, monospace !important", 193 192 }, 194 193 }, 194 + // TODO: let's migrate all of these into custom.css, it seems cleaner 195 + // and less confusing than using both inline stylesheet here *and* an imported css 195 196 "apc.stylesheet": { 196 197 // Comments use the serif variant 197 198 ".mtk3": { ··· 210 211 "font-feature-settings": "inherit !important", 211 212 }, 212 213 // Make PR comment code the same size as the editor 213 - ".comments-container .monaco-tokenized-source, .comments-container code": { 214 - "font-size": "12px", 214 + ".comment-body .monaco-tokenized-source, .comment-body code, .comment-body pre": { 215 + "font-size": "12px !important", 215 216 }, 216 217 // And make the comment editor also use the same. The second selector is needed 217 218 // for the cursor to use the same letter spacing as the rendered text, otherwise 218 219 // selections and cursor position will be computed for the default font instead . 219 220 ".comment-form .monaco-editor, .comment-form .monaco-editor-background .monaco-mouse-cursor-text": { 220 221 "font-size": "12px !important", 221 - "font-family": "'Monaspace Argon Var', 'Input Mono', Monaco, monospace !important", 222 222 "font-feature-settings": "'calt', 'liga', 'ss03', 'ss04', 'ss05', 'ss06', 'ss07', 'ss08', 'ss09' !important", 223 223 // Also override spacing! The cursor will be screwed up otherwise: 224 - "letter-spacing": "-0.2px !important", 224 + "letter-spacing": "0px !important", 225 225 }, 226 226 }, 227 227 ··· 356 356 "cSpell.useGitignore": false, 357 357 "cSpell.diagnosticLevel": "Hint", 358 358 359 - "diffEditor.wordWrap": "on", 360 359 "diffEditor.hideUnchangedRegions.enabled": true, 361 360 "diffEditor.renderSideBySide": true, 361 + "diffEditor.wordWrap": "on", 362 + 363 + "diffviewer.colorScheme": "dark", 364 + "diffviewer.outputFormat": "line-by-line", 362 365 363 366 "debug.console.acceptSuggestionOnEnter": "off", 364 367 "debug.console.fontFamily": "Monaspace Argon, Input Mono, Monaco, monospace", ··· 421 424 "editor.multiCursorModifier": "alt", 422 425 "editor.lineNumbers": "on", 423 426 "editor.renderControlCharacters": true, 427 + "editor.glyphMargin": true, 424 428 "editor.renderWhitespace": "selection", 425 429 "editor.rulers": [ 426 430 80, ··· 708 712 }, 709 713 }, 710 714 "extensions.experimental.affinity": { 711 - "asvetliakov.vscode-neovim": 1 715 + "asvetliakov.vscode-neovim": 1, 712 716 }, 713 717 714 718 "files.associations": { ··· 742 746 ".clang-format": "yaml", 743 747 ".coveragerc": "ini", 744 748 ".gitmodules": "properties", 745 - "BUILD": "starlark", 749 + "**/BUILD": "starlark", 750 + "BUILD.*": "starlark", 746 751 "Cargo.lock": "toml", 747 752 "config.toml.example": "toml", 748 753 "gdbinit": "shellscript", ··· 834 839 "git.enableStatusBarSync": false, 835 840 "git.ignoreSubmodules": false, 836 841 "git.mergeEditor": true, 837 - "git.openRepositoryInParentFolders": "never", 838 842 "git.optimisticUpdate": true, 839 843 840 844 // TODO: vscode-github issue on these two: ··· 842 846 "git.openDiffOnClick": true, 843 847 "git.showInlineOpenFileAction": true, 844 848 849 + "github.experimental.multipleAccounts": true, 845 850 "github.copilot.chat.welcomeMessage": "never", 846 851 "github.copilot.editor.enableAutoCompletions": true, 847 852 "github.copilot.editor.enableCodeActions": false, ··· 851 856 "markdown": false, 852 857 "scminput": false, 853 858 }, 854 - "github.copilot.preferredAccount": "ichamberlain_JNPR", 859 + // https://github.com/microsoft/vscode-copilot-release/issues/1444 860 + // Seems to work without this, although I don't really understand why. 861 + // "github.copilot.preferredAccount": "ichamberlain_JNPR", 855 862 856 863 "githubIssues.useBranchForIssues": "prompt", 857 864 "githubIssues.assignWhenWorking": false, ··· 1005 1012 "groovyLint.format.useDocumentIndentSize": true, 1006 1013 1007 1014 "grunt.autoDetect": "off", 1015 + "gulp.autoDetect": "off", 1008 1016 1009 - "gulp.autoDetect": "off", 1017 + "haskell.manageHLS": "PATH", 1010 1018 1011 1019 "hexeditor.columnWidth": 16, 1012 1020 "hexeditor.showDecodedText": true, ··· 1072 1080 "nginx-conf-hint.syntax": "sublime", 1073 1081 1074 1082 "nix.enableLanguageServer": true, 1075 - "nix.serverPath": "nixd", 1083 + "nix.serverPath": "nil", // "nixd", 1076 1084 "nix.serverSettings": { 1077 1085 // https://github.com/oxalica/nil/blob/main/docs/configuration.md 1078 1086 "nil": { ··· 1082 1090 "nix": { 1083 1091 "maxMemoryMB": 3072, 1084 1092 "flake": { 1085 - "autoEvalInputs": true, 1093 + // Hmm, this still has issues: https://github.com/oxalica/nil/issues/79 1094 + "autoEvalInputs": false, 1095 + "nixpkgsInputName": "nixpkgs-darwin", 1086 1096 } 1087 1097 } 1088 1098 }, ··· 1122 1132 "output.smartScroll.enabled": false, 1123 1133 1124 1134 "plist.editor.spacing": "comfortable", 1135 + "plist.logging.level": "verbose", 1125 1136 1126 - "python.analysis.logLevel": "Trace", 1137 + "python.analysis.autoFormatStrings": true, 1138 + "python.analysis.autoImportCompletions": false, 1139 + // add in some stuff that I use in dotfiles, etc. just for convenience 1140 + // Would be nice to glob these: https://github.com/microsoft/pylance-release/issues/5364 1141 + "python.analysis.extraPaths": [ 1142 + "~/.config/iterm2/AppSupport/iterm2env/versions/3.10.4/lib/python3.10/site-packages", 1143 + "~/.config/btt/scripts", 1144 + "~/.pyenv/versions/spotify/lib/python3.12/site-packages", 1145 + ], 1146 + "python.analysis.inlayHints.callArgumentNames": "partial", 1127 1147 "python.analysis.inlayHints.functionReturnTypes": true, 1128 - "python.analysis.inlayHints.callArgumentNames": "partial", 1148 + "python.analysis.inlayHints.pytestParameters": true, 1129 1149 "python.analysis.inlayHints.variableTypes": true, 1130 - "python.analysis.inlayHints.pytestParameters": true, 1131 - "python.analysis.autoImportCompletions": false, 1150 + "python.analysis.logLevel": "Information", 1132 1151 "python.analysis.typeCheckingMode": "basic", 1133 1152 "python.analysis.useLibraryCodeForTypes": true, 1134 - "python.experiments.optOutFrom": [ 1135 - "All" 1136 - ], 1153 + "python.experiments.optOutFrom": [ "All" ], 1137 1154 "python.testing.autoTestDiscoverOnSaveEnabled": false, 1138 - "python.defaultInterpreterPath": "/Users/ichamberlain/.pyenv/versions/3.6.8/envs/btt-scripts", 1139 1155 "python.languageServer": "Pylance", 1140 1156 "python.terminal.activateEnvironment": false, 1141 - "python.venvFolders": [], 1157 + "python.venvPath": "${env:PYENV_ROOT}", 1142 1158 1143 1159 "remote.SSH.configFile": "~/.ssh/vscode_config", 1144 1160 ··· 1225 1241 }, 1226 1242 "search.useIgnoreFiles": true, 1227 1243 1244 + "security.workspace.trust.untrustedFiles": "open", 1245 + 1228 1246 "shader-toy.reloadOnEditTextDelay": 2, 1229 1247 "shader-toy.reloadOnEditText": true, 1230 1248 ··· 1279 1297 "-workbench.action.focusNextPart", 1280 1298 ], 1281 1299 "terminal.integrated.confirmOnExit": "hasChildProcesses", 1282 - "terminal.integrated.confirmOnKill": "panel", 1300 + "terminal.integrated.confirmOnKill": "always", 1283 1301 "terminal.integrated.copyOnSelection": true, 1302 + "terminal.integrated.inheritEnv": true, 1284 1303 // Normally we'd want Var to enable certain ligatures, but the integrated terminal 1285 1304 // doesn't seem to support them anyway so just use the non-Var for its higher weight 1286 1305 "terminal.integrated.fontFamily": "Monaspace Argon, MonaspiceAr Nerd Font, Input Mono, Monaco, monospace", ··· 1452 1471 "Visual": { 1453 1472 "backgroundColor": "theme.editor.selectionBackground" 1454 1473 }, 1474 + "Whitespace": { 1475 + "color": "theme.editorWhitespace.foreground", //? 1476 + } 1455 1477 }, 1456 1478 1457 1479 "vscode-pets.petSize": "small",
+4 -1
.config/flake.code-workspace
··· 22 22 "path": "nixpkgs" 23 23 }, 24 24 ], 25 - "settings": {}, 25 + "settings": { 26 + // e.g. when opening with `yadm enter code` or using `.config/.git` 27 + "git.untrackedChanges": "hidden", 28 + }, 26 29 }