this repo has no description
0
fork

Configure Feed

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

Improve fish shell startup time

Turns out, `set -U` appends values every time which made fish_variables
quite large. `set -g` is more well-behaved to put in `fish/conf.d`
scripts.

Also update vscode settings for diff view, add spell check extension,
minor other fixes.

+70 -14
+1 -1
.config/fish/conf.d/00-curl.fish
··· 1 1 # Use latest curl version from brew for updated SSL support 2 - set -U fish_user_paths "/usr/local/opt/curl/bin" $fish_user_paths 2 + set -g fish_user_paths "/usr/local/opt/curl/bin" $fish_user_paths
+3 -3
.config/fish/conf.d/50-config.fish
··· 1 1 # Set fish_user_paths here instead of fish_variables to expand $HOME per-machine 2 - set -U fish_user_paths \ 2 + set -g fish_user_paths \ 3 3 ~/.cargo/bin \ 4 4 ~/Library/Python/3.7/bin \ 5 5 $fish_user_paths ··· 24 24 end 25 25 26 26 if command -qs pyenv 27 - pyenv init - | source 28 - pyenv virtualenv-init - | source 27 + pyenv init - fish | source 28 + pyenv virtualenv-init - fish | source 29 29 end 30 30 end 31 31
+6 -5
.config/vscode/extensions.txt
··· 1 1 13xforever.language-x86-64-assembly@2.3.0 2 2 asvetliakov.vscode-neovim@0.0.50 3 - atlassian.atlascode@2.6.3 3 + atlassian.atlascode@2.6.4 4 4 BazelBuild.vscode-bazel@0.3.0 5 5 bmalehorn.vscode-fish@1.0.16 6 6 bungcip.better-toml@0.3.2 7 7 codezombiech.gitignore@0.6.0 8 - DavidAnson.vscode-markdownlint@0.36.0 8 + DavidAnson.vscode-markdownlint@0.36.1 9 9 dnicolson.binary-plist@0.4.0 10 10 DotJoshJohnson.xml@2.5.0 11 11 dunstontc.viml@0.1.7 ··· 21 21 LaurentTreguier.rpm-spec@0.3.0 22 22 mariusschulz.yarn-lock-syntax@0.1.3 23 23 marko2276.yang@0.1.3 24 - matklad.rust-analyzer@0.2.216 24 + matklad.rust-analyzer@0.2.224 25 25 ms-azuretools.vscode-docker@1.3.1 26 - ms-pyright.pyright@1.1.45 27 - ms-python.python@2020.6.89148 26 + ms-pyright.pyright@1.1.47 27 + ms-python.python@2020.6.90262 28 28 ms-vscode-remote.remote-ssh@0.51.0 29 29 ms-vscode-remote.remote-ssh-edit@0.51.0 30 30 ms-vscode.cmake-tools@1.4.0 ··· 37 37 ritwickdey.LiveServer@5.6.1 38 38 sleistner.vscode-fileutils@3.0.1 39 39 slevesque.shader@1.1.4 40 + streetsidesoftware.code-spell-checker@1.9.0 40 41 timonwong.shellcheck@0.9.0 41 42 TomiTurtiainen.rf-intellisense@2.8.0 42 43 twxs.cmake@0.0.17
+3 -3
.config/yadm/alt/.gnupg/gpg-agent.conf##os.Darwin
··· 1 - # Set TTL to four hours for GPG passphrase prompt 2 - default-cache-ttl 14400 3 - max-cache-ttl 14400 1 + # Set TTL to 5 days for GPG passphrase prompt 2 + default-cache-ttl 432000 3 + max-cache-ttl 432000
+56 -1
Library/Application Support/Code/User/keybindings.json
··· 306 306 "args": "m", 307 307 "when": "editorTextFocus && neovim.mode != 'insert' && !isInDiffEditor", 308 308 }, 309 - 309 + { 310 + "key": "shift+d", 311 + "command": "vscode-neovim.send", 312 + "args": "<S-d>", 313 + "when": "editorTextFocus && neovim.mode != 'insert' && !isInDiffEditor", 314 + }, 315 + { 316 + "key": "shift+e", 317 + "command": "vscode-neovim.send", 318 + "args": "<S-e>", 319 + "when": "editorTextFocus && neovim.mode != 'insert' && !isInDiffEditor", 320 + }, 321 + { 322 + "key": "shift+e", 323 + "command": "vscode-neovim.send", 324 + "args": "<S-e>", 325 + "when": "editorTextFocus && neovim.mode != 'insert' && !isInDiffEditor", 326 + }, 327 + { 328 + "key": "[", 329 + "command": "vscode-neovim.send", 330 + "args": "[", 331 + "when": "editorTextFocus && neovim.mode != 'insert' && !isInDiffEditor", 332 + }, 333 + { 334 + "key": "shift+[", 335 + "command": "vscode-neovim.send", 336 + "args": "{", 337 + "when": "editorTextFocus && neovim.mode != 'insert' && !isInDiffEditor", 338 + }, 310 339 // // Rebind findNext and findPrev so that neovim cursor will move 311 340 // { 312 341 // "key": "enter", ··· 339 368 // These should work for Github and for Bitbucket 340 369 // ========================================================================= 341 370 { 371 + "key": "escape", 372 + "command": "-workbench.action.hideComment", 373 + "when": "commentEditorFocused" 374 + }, 375 + { 342 376 "key": "n", 343 377 "command": "workbench.action.compareEditor.nextChange", 344 378 "when": "editorTextFocus && isInDiffEditor", ··· 353 387 "command": "atlascode.bb.addComment", 354 388 "when": "editorTextFocus && resourceScheme == atlascode.bbpr", 355 389 }, 390 + { 391 + "key": "shift+d", 392 + "command": "toggle.diff.renderSideBySide", 393 + "when": "editorTextFocus && isInDiffEditor", 394 + }, 395 + { 396 + "key": "shift+e", 397 + "command": "toggle.diff.ignoreTrimWhitespace", 398 + "when": "editorTextFocus && isInDiffEditor", 399 + }, 400 + { 401 + "key": "[", 402 + "command": "workbench.action.toggleSidebarVisibility", 403 + "when": "editorTextFocus && isInDiffEditor", 404 + }, 405 + { 406 + "key": "shift+[", 407 + "command": "workbench.action.toggleSidebarVisibility", 408 + "when": "editorTextFocus && isInDiffEditor", 409 + }, 410 + 356 411 // TODO: make these work 357 412 { 358 413 "key": "j",
+1 -1
Library/Application Support/Code/User/settings.json
··· 464 464 "workbench.startupEditor": "newUntitledFile", 465 465 466 466 "yaml.schemas": { 467 - "file:///Users/ichamberlain/.vscode/extensions/atlassian.atlascode-2.6.3/resources/schemas/pipelines-schema.json": "bitbucket-pipelines.yml" 467 + "file:///Users/ichamberlain/.vscode/extensions/atlassian.atlascode-2.6.4/resources/schemas/pipelines-schema.json": "bitbucket-pipelines.yml" 468 468 }, 469 469 "pyright.disableOrganizeImports": true, 470 470 "pyright.useLibraryCodeForTypes": true,