this repo has no description
0
fork

Configure Feed

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

Various settings updates

+79 -28
+1 -1
.Brewfile
··· 112 112 brew "luarocks" 113 113 114 114 # Curses-based tool for viewing and analyzing log files 115 - brew "lnav", args: ["HEAD"] 115 + brew "lnav" 116 116 117 117 # Mac App Store command-line interface 118 118 brew "mas"
+7 -2
.config/fish/completions/bazel.fish
··· 75 75 set package (string split ':' -- $target)[1] 76 76 set all_targets "$package:all" 77 77 78 - echo $all_targets 79 - __bazel_query "kind('$target_types', $all_targets)" 78 + set targets (__bazel_query "kind('$target_types', $all_targets)") 79 + if test (count $targets) -gt 1 80 + echo $all_targets 81 + end 82 + for target in $targets 83 + echo $target 84 + end 80 85 else 81 86 set cur_package (string match --regex '(.*)\/[^\/]*' -- $target)[2] 82 87 __bazel_query "kind('$target_types', $cur_package/...:all)"
+1 -1
.config/fish/functions/fish_prompt.fish
··· 15 15 set -g __fish_prompt_cwd (set_color cyan) 16 16 end 17 17 18 - set -g __fish_git_prompt_color bryellow --italics --background normal 18 + set -g __fish_git_prompt_color bryellow --background normal --italics 19 19 20 20 set color_chars 0 21 21
+3
.config/fish/functions/jssh_ping.fish
··· 1 + function jssh_ping 2 + ssh_ping (juniper_ip_to_128_ip $argv[1]) 3 + end
+6
.config/fish/functions/ssh_ping.fish
··· 1 + function ssh_ping 2 + while ! nc -vz $argv[1] 22 3 + sleep 3 4 + end 5 + beep 6 + end
+1 -1
.gitconfig
··· 23 23 bc = branch-clean 24 24 bpull = !sh -c 'git fetch origin $1:$1' - 25 25 vdiff = difftool -d HEAD 26 - conflicts = !git diff --name-only --diff-filter=U 26 + conflicts = !sh -c 'git diff --name-only --diff-filter=U --line-prefix="$(git rev-parse --show-toplevel)/"' 27 27 local-branch = "!git branch --format '%(refname:short) %(upstream:trackshort)' | awk '{if (!$2 || $2 == \"[gone]\") print $1;}'" 28 28 local-branch-clean = "!for b in $(git local-branch); do echo \"$b\"; git ld --color=always \"$b\" \"^$(git default-branch)\" | sed \"s/^/ /\"; printf \"\\x1b[B\\x1b[m\\n\"; read -r -p \"Delete branch? [y/N]: \"; if [[ \"$REPLY\" =~ ^[Yy]$ ]]; then git branch -D \"$b\"; fi; done #" 29 29
+1 -1
.nvmrc
··· 1 - latest 1 + lts
.ssh/config

This is a binary file and will not be displayed.

+36 -8
Library/Application Support/Code/User/keybindings.json
··· 535 535 // End bindings for vscode-neovim 536 536 // ========================================================================= 537 537 538 + // These are neovim-related but specifically for jupyter notebooks: 539 + { 540 + "key": "escape", 541 + "command": "-notebook.cell.quitEdit", 542 + }, 543 + { 544 + "key": "shift+tab", 545 + "command": "notebook.cell.quitEdit", 546 + "when": "neovim.mode == 'normal' && editorFocus && notebookCellEditorFocused" 547 + }, 548 + { 549 + "key": "cmd+l", 550 + "when": "notebookCellEditorFocused", 551 + "command": "notebook.cell.changeLanguage" 552 + }, 553 + { 554 + "key": "j", 555 + "command": "notebook.focusNextEditor", 556 + "when": "neovim.mode == 'normal' && config.notebook.navigation.allowNavigateToSurroundingCells && editorTextFocus && inputFocus && notebookEditorFocused && notebookEditorCursorAtBoundary != 'none' && notebookEditorCursorAtBoundary != 'top'" 557 + }, 558 + { 559 + "key": "k", 560 + "command": "notebook.focusPreviousEditor", 561 + "when": "neovim.mode == 'normal' && config.notebook.navigation.allowNavigateToSurroundingCells && editorTextFocus && inputFocus && notebookEditorFocused && notebookEditorCursorAtBoundary != 'bottom' && notebookEditorCursorAtBoundary != 'none'" 562 + }, 563 + 538 564 // ========================================================================= 539 565 // Rust-analyzer keybinds. Mostly compatible with vim 540 566 // ========================================================================= ··· 590 616 }, 591 617 { 592 618 "key": "j", 593 - "command": "macros.githubPullRequest.nextFile", 594 - "when": "editorTextFocus && isInDiffEditor", 619 + "command": "pr.goToNextDiffInPr", 620 + "when": "github:inReviewMode && activeEditor == 'workbench.editors.textDiffEditor'", 595 621 }, 596 622 { 597 623 "key": "alt+j", 598 - "command": "macros.githubPullRequest.markFileAsViewed", 599 - "when": "editorTextFocus && isInDiffEditor", 624 + "command": "pr.markFileAsViewed", 625 + "when": "github:inReviewMode && activeEditor == 'workbench.editors.textDiffEditor'", 600 626 }, 627 + // TODO: for now there is no "previous diff in PR" command 601 628 { 602 629 "key": "k", 603 - "command": "macros.githubPullRequest.previousFile", 604 - "when": "editorTextFocus && isInDiffEditor", 630 + "command": "pr.goToPreviousDiffInPr", 631 + "when": "github:inReviewMode && activeEditor == 'workbench.editors.textDiffEditor'", 605 632 }, 606 633 { 607 634 "key": "alt+k", 608 - "command": "macros.githubPullRequest.unmarkFileAsViewed", 609 - "when": "editorTextFocus && isInDiffEditor", 635 + "command": "pr.unmarkFileAsViewed", 636 + "when": "github:inReviewMode && inDiffEditor", 610 637 }, 611 638 { 612 639 "key": "m", ··· 640 667 { 641 668 "command": "workbench.action.editor.changeLanguageMode", 642 669 "key": "cmd+l", 670 + "when": "!notebookCellEditorFocused" 643 671 }, 644 672 { 645 673 "command": "editor.action.indentUsingSpaces",
+23 -12
Library/Application Support/Code/User/settings.json
··· 71 71 "editor.formatOnSave": true, 72 72 }, 73 73 "[robotframework]": { 74 - "editor.formatOnSave": false 74 + "editor.formatOnSave": true 75 75 }, 76 76 "[redcode]": { 77 77 // Commonly used for aligning instructions ··· 150 150 "--background-index" 151 151 ], 152 152 "clangd.checkUpdates": true, 153 - "clangd.path": "/Users/ianchamberlain/Library/Application Support/Code/User/globalStorage/llvm-vs-code-extensions.vscode-clangd/install/15.0.1/clangd_15.0.1/bin/clangd", 153 + "clangd.path": "/Users/ichamberlain/Library/Application Support/Code/User/globalStorage/llvm-vs-code-extensions.vscode-clangd/install/15.0.3/clangd_15.0.3/bin/clangd", 154 154 "clangd.onConfigChanged": "restart", 155 155 156 156 "cmake.cmakePath": "/usr/local/bin/cmake", ··· 324 324 "unresolvedReference.injected:rust": "#F8F8F2", 325 325 326 326 "keywordNameCall:robotframework": "#A6E22E", 327 + "keywordNameDefinition:robotframework": { 328 + "underline": true 329 + }, 330 + "testCaseName:robotframework": { 331 + "underline": true 332 + }, 333 + "header:robotframework": { 334 + "bold": true 335 + }, 327 336 328 337 "tomlArrayKey:toml": { 329 338 "foreground": "#F92672", ··· 415 424 }, 416 425 { 417 426 "match": "[.]go$", 418 - "cmd": "golines ${file} --write-output --ignored-dirs=vendor --shorten-comments --base-formatter=cat --max-len=120 --tab-len=1" 427 + "cmd": "golines ${file} --write-output --ignored-dirs=vendor --base-formatter=cat --max-len=120 --tab-len=1" 419 428 }, 420 429 ] 421 430 }, ··· 516 525 "files.trimTrailingWhitespace": true, 517 526 "files.watcherExclude": { 518 527 "**/.bazel_out/**": true, 528 + "**/.cache/**": true, 529 + "**/.cargo/**": true, 519 530 "**/.git/objects/**": true, 520 531 "**/.git/subtree-cache/**": true, 521 532 "**/.hg/store/**": true, 522 533 "**/.mypy_cache/**": true, 523 - "**/.cache/**": true, 524 - "**/node_modules/**": true, 525 534 "**/*bazel_out/**": true, 526 535 "**/bazel-*/**": true, 527 536 "**/execroot/**": true, 528 - "**/.cargo/**": true, 537 + "**/node_modules/**": true, 529 538 "**/private/var/tmp/**": true, 530 539 }, 531 540 ··· 748 757 749 758 "nginx-conf-hint.syntax": "sublime", 750 759 760 + "notebook.cellToolbarVisibility": "hover", 751 761 "notebook.cellToolbarLocation": { 752 762 "default": "right", 753 763 "jupyter-notebook": "left" 754 764 }, 765 + "notebook.lineNumbers": "on", 755 766 756 767 "org.todoKeywords": [ 757 768 "TODO", ··· 781 792 782 793 "robot.completions.keywords.format": "Title Case", 783 794 "robot.completions.section_headers.form": "plural", 784 - "robot.codeFormatter": "builtinTidy", 795 + "robot.codeFormatter": "robotidy", 785 796 786 797 "redhat.telemetry.enabled": false, 787 798 ··· 790 801 791 802 "rust-analyzer.cargo.buildScripts.enable": true, 792 803 "rust-analyzer.cargo.features": "all", 804 + "rust-analyzer.cargo.extraEnv": { 805 + "CARGO_UNSTABLE_SPARSE_REGISTRY": "true" 806 + }, 793 807 "rust-analyzer.cargo.noDefaultFeatures": false, 794 808 "rust-analyzer.checkOnSave.allTargets": true, 795 809 "rust-analyzer.checkOnSave.command": "clippy", ··· 1015 1029 "typescript.check.npmIsInstalled": false, 1016 1030 1017 1031 // Mouse selection seems to cause more problems than it's worth... 1032 + // TODO maybe worth reconsidering 1018 1033 "vscode-neovim.mouseSelectionStartVisualMode": false, 1034 + 1019 1035 "vscode-neovim.neovimExecutablePaths.darwin": "/usr/local/bin/nvim", 1020 1036 "vscode-neovim.neovimInitVimPaths.darwin": "~/.vimrc", 1021 1037 "vscode-neovim.neovimInitVimPaths.linux": "~/.vimrc", ··· 1083 1099 "**/*.tm[Ll]anguage.yml" 1084 1100 ], 1085 1101 "file:///Users/ichamberlain/.vscode/extensions/atlassian.atlascode-2.10.12/resources/schemas/pipelines-schema.json": "bitbucket-pipelines.yml" 1086 - }, 1087 - "githubPullRequests.pullBranch": "never", 1088 - "atlascode.jira.lastCreateSiteAndProject": { 1089 - "siteId": "bac6916f-cfa6-4538-b834-b07ba864675f", 1090 - "projectKey": "AS" 1091 1102 }, 1092 1103 }
-2
Library/Application Support/Code/User/snippets/python.json
··· 1 - { 2 - }
Library/Application Support/lghub/settings.db

This is a binary file and will not be displayed.