this repo has no description
0
fork

Configure Feed

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

Fix some fish_user_paths + add vim-dirdiff plugin

+32 -16
+1 -1
.config/fish/conf.d/00-curl.fish
··· 1 1 # Use latest curl version from brew for updated SSL support 2 - set -g fish_user_paths "/usr/local/opt/curl/bin" $fish_user_paths 2 + set -Ux fish_user_paths "/usr/local/opt/curl/bin" $fish_user_paths
+2 -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 -g fish_user_paths \ 2 + set -Ux fish_user_paths \ 3 3 ~/.cargo/bin \ 4 - ~/Library/Python/3.7/bin \ 5 - $fish_user_paths 4 + ~/Library/Python/3.7/bin 6 5 7 6 # Set a proper TTY for gpg commands to work 8 7 set -x GPG_TTY (tty)
+3
.config/fish/functions/rdbazel.fish
··· 1 + function rdbazel --wraps=bazel 2 + rdsh -- bazel $argv 3 + end
+7
.config/fish/functions/rdbuild.fish
··· 1 + function rdbuild 2 + # Based on /usr/local/bin/rdbuild 3 + bash -c " 4 + set -e 5 + source /usr/local/bin/rgit_utilities.sh 6 + rgit_push 'Invoking dbuild on the remote' 'tmux -CC new \"tools/dbuild $argv\"'" 7 + end
+3 -3
.config/vscode/extensions.txt
··· 22 22 mariusschulz.yarn-lock-syntax@0.1.3 23 23 marko2276.yang@0.1.3 24 24 matklad.rust-analyzer@0.2.248 25 - ms-azuretools.vscode-docker@1.3.1 26 - ms-pyright.pyright@1.1.54 27 - ms-python.python@2020.7.94776 25 + ms-azuretools.vscode-docker@1.4.1 26 + ms-pyright.pyright@1.1.55 27 + ms-python.python@2020.7.96456 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.1
+7 -7
.gitconfig
··· 20 20 alias = "!sh -c '[ $# = 2 ] && git config --global alias.\"$1\" \"$2\" && exit 0 || echo \"usage: git alias <new alias> <original command>\" >&2 && exit 1' -" 21 21 aliases = !git config --get-regexp 'alias.*' | sed -E 's/alias\\.([^[:space:]]+)[[:space:]](.+)/[\\1]'$'\\\\\\n'' \\2/' 22 22 bc = branch-clean 23 + bpull = !sh -c 'git fetch origin $1:$1' - 24 + vdiff = difftool -d HEAD 23 25 [core] 24 26 excludesfile = ~/.gitignore_global 25 27 editor = /usr/bin/env vim 28 + [diff] 29 + tool = vimdiff 26 30 [difftool] 27 - prompt = false 28 - [difftool "vscode"] 29 - cmd = /usr/local/bin/code --diff --wait $LOCAL $REMOTE 30 - [mergetool "vscode"] 31 - cmd = /usr/local/bin/code --wait $MERGED 32 31 trustExitCode = true 33 - [diff] 34 - tool = vscode 32 + prompt = false 33 + [difftool "vimdiff"] 34 + cmd = vim -c "\"DirDiff $LOCAL $REMOTE\"" 35 35 [merge] 36 36 renameLimit = 2000 37 37 [submodule]
+5 -2
.gitmodules
··· 1 1 [submodule ".vim/pack/dist/start/vim-airline"] 2 - path = .vim/pack/dist/start/vim-airline 2 + path = .vim/pack/bundle/start/vim-airline 3 3 url = https://github.com/vim-airline/vim-airline 4 4 [submodule ".vim/pack/dist/start/vim-fish"] 5 - path = .vim/pack/dist/start/vim-fish 5 + path = .vim/pack/bundle/start/vim-fish 6 6 url = https://github.com/blankname/vim-fish.git 7 + [submodule ".vim/pack/bundle/start/vim-dirdiff"] 8 + path = .vim/pack/bundle/start/vim-dirdiff 9 + url = https://github.com/will133/vim-dirdiff.git
+3
.vimrc
··· 22 22 set diffopt+=iwhite 23 23 endif 24 24 25 + " Enable leader-keymaps for DirDiff 26 + let g:DirDiffEnableMappings = 1 27 + 25 28 set hlsearch 26 29 syntax on 27 30
+1
Library/Application Support/Code/User/settings.json
··· 1 1 { 2 2 "[cpp]": { 3 3 "editor.formatOnSave": true, 4 + "editor.defaultFormatter": "xaver.clang-format", 4 5 }, 5 6 "[dockerfile]": { 6 7 "editor.quickSuggestions": {