this repo has no description
0
fork

Configure Feed

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

Merge branch 'main' of github.com:ian-h-chamberlain/dotfiles

+31 -9
+23 -9
.config/Code/User/settings.json
··· 158 158 "clangd.path": "/Users/ichamberlain/Library/Application Support/Code/User/globalStorage/llvm-vs-code-extensions.vscode-clangd/install/16.0.2/clangd_16.0.2/bin/clangd", 159 159 "clangd.onConfigChanged": "restart", 160 160 161 + "cmake.ignoreCMakeListsMissing": true, 161 162 "cmake.configureOnOpen": false, 162 163 "cmake.configureOnEdit": false, 163 164 "cmake.skipConfigureIfCachePresent": true, ··· 333 334 }, 334 335 "derive.defaultLibrary:rust": "#A6E22E", 335 336 "deriveHelper:rust": "#A6E22E", 337 + "operator:rust": "#F92672", 338 + "punctuation:rust": "#F8F8F2", 336 339 "selfKeyword:rust": "#FD971F", 340 + "selfKeyword.crateRoot:rust": "#F92672", 337 341 // Not positive if I like this, but let's see... 338 342 "selfTypeKeyword:rust": { 339 343 "foreground": "#66D9EF", ··· 502 506 ] 503 507 }, 504 508 505 - "evenBetterToml.commands.copyTomlAsJson": true, 506 - "evenBetterToml.commands.copyJsonAsToml": true, 507 509 "evenBetterToml.formatter.arrayAutoCollapse": false, 508 510 "evenBetterToml.formatter.allowedBlankLines": 1, 509 511 "evenBetterToml.formatter.reorderKeys": false, 510 512 "evenBetterToml.formatter.arrayAutoExpand": false, 511 513 "evenBetterToml.semanticTokens": true, 514 + "evenBetterToml.schema.links": false, 515 + "evenBetterToml.schema.enabled": true, 516 + "evenBetterToml.schema.catalogs": [ 517 + "https://www.schemastore.org/api/json/catalog.json" 518 + ], 512 519 513 520 "explorer.autoReveal": false, 514 521 "explorer.confirmDelete": false, ··· 607 614 "files.readonlyInclude": { 608 615 "/opt/devkitpro/**": true, 609 616 "/var/log/**": true, 617 + "/home/*/.cargo/**": true, 610 618 "/home/*/.rustup/toolchains/**": true, 611 - "/Users/*/.rustup/toolchains/**": true 619 + "/Users/*/.cargo/**": true, 620 + "/Users/*/.rustup/toolchains/**": true, 621 + "**/bindings.rs": true, 612 622 }, 613 623 "files.trimTrailingWhitespace": true, 614 624 "files.watcherExclude": { ··· 689 699 "closed": true 690 700 }, 691 701 702 + "gitlens.experimental.generateCommitMessagePrompt": "", 692 703 "gitlens.advanced.fileHistoryFollowsRenames": true, 693 704 "gitlens.advanced.fileHistoryShowAllBranches": true, 694 705 "gitlens.advanced.messages": { ··· 878 889 "rust-analyzer.cargo.features": "all", 879 890 "rust-analyzer.cargo.extraEnv": { 880 891 "CARGO_UNSTABLE_SPARSE_REGISTRY": "true", 892 + }, 893 + "rust-analyzer.server.extraEnv": { 894 + "PATH": "${userHome}/.cargo/bin:/usr/local/bin:/usr/sbin:/usr/bin" 881 895 }, 882 896 "rust-analyzer.cargo.noDefaultFeatures": false, 883 897 "rust-analyzer.checkOnSave.allTargets": true, ··· 908 922 "rust-analyzer.diagnostics.warningsAsInfo": [ 909 923 "clippy::pedantic", 910 924 "missing_docs", 925 + "unreachable_code", 911 926 ], 912 927 "rust-analyzer.imports.granularity.enforce": true, 913 928 "rust-analyzer.imports.granularity.group": "module", 914 929 "rust-analyzer.imports.group.enable": true, 915 - "rust-analyzer.imports.prefix": "plain", 930 + "rust-analyzer.imports.prefix": "self", 916 931 "rust-analyzer.inlayHints.lifetimeElisionHints.enable": "skip_trivial", 917 932 "rust-analyzer.inlayHints.lifetimeElisionHints.useParameterNames": false, 918 933 "rust-analyzer.inlayHints.maxLength": 15, ··· 1119 1134 "typescript.check.npmIsInstalled": false, 1120 1135 1121 1136 "vscode_custom_css.imports": [ 1122 - "file:///home/deck/.config/Code/User/custom.css", 1137 + "file://~/.config/Code/User/custom.css", 1123 1138 "file:///Users/ichamberlain/.config/Code/User/custom.css", 1124 1139 "file:///Users/ianchamberlain/.config/Code/User/custom.css", 1125 1140 ··· 1198 1213 1199 1214 "yaml.schemas": { 1200 1215 "https://json.schemastore.org/github-workflow": [ 1201 - "**/.github/workflows/**/*.yaml", 1202 - "**/.github/workflows/**/*.yml" 1216 + "**/.github/workflows/**/*.ya?ml", 1203 1217 ], 1204 1218 "https://raw.githubusercontent.com/martinring/tmlanguage/master/tmlanguage.json": [ 1205 - "**/*.tm[Ll]anguage.yaml", 1206 - "**/*.tm[Ll]anguage.yml" 1219 + "**/*.tm[Ll]anguage.ya?ml", 1207 1220 ], 1208 1221 "file:///Users/ichamberlain/.vscode/extensions/atlassian.atlascode-3.0.4/resources/schemas/pipelines-schema.json": "bitbucket-pipelines.yml" 1209 1222 }, 1223 + "git.openRepositoryInParentFolders": "never", 1210 1224 }
+3
.config/fish/completions/steamos-readonly.fish
··· 1 + complete --command steamos-readonly \ 2 + --no-files \ 3 + --arguments 'enable disable toggle status'
+5
.config/rustfmt/rustfmt.toml
··· 1 + # Global rustfmt configuration. These features aren't stable yet, but hopefully 2 + # will at least get applied whenever using a nightly rustfmt. 3 + unstable_features = true 4 + group_imports = "StdExternalCrate" 5 + imports_granularity = "Module"