this repo has no description
0
fork

Configure Feed

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

Various minor changes to vscode + vimrc

+86 -34
+13 -1
.Brewfile
··· 121 121 # GNU File, Shell, and Text utilities 122 122 brew "coreutils" 123 123 124 + # Static analysis of C and C++ code 125 + brew "cppcheck" 126 + 124 127 # Reimplementation of ctags(1) 125 128 brew "ctags" 126 129 ··· 217 220 # Collection of portable C++ source libraries 218 221 brew "boost@1.55" 219 222 223 + # C++ library for C++/Python2 interoperability 224 + brew "boost-python" 225 + 226 + # Binary-decimal and decimal-binary routines for IEEE doubles 227 + brew "double-conversion" 228 + 220 229 # Serialization library for C++, supporting Java, C#, and Go 221 - brew "flatbuffers" 230 + brew "flatbuffers", args: ["build-from-source"] 222 231 223 232 # GNU compiler collection 224 233 brew "gcc@7" 234 + 235 + # Application-level logging library 236 + brew "glog" 225 237 226 238 # library to access smi mib information 227 239 brew "libsmi"
+1 -1
.config/newtabtools/work/tiles.json
··· 53 53 "id": 9 54 54 }, 55 55 { 56 - "url": "http://wayne-manor.tools.lab.128technology.com", 56 + "url": "https://wayne-manor-staging.lab.128technology.com", 57 57 "title": "Login | Interchange", 58 58 "position": 9, 59 59 "id": 10
+13 -11
.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.6 3 + atlassian.atlascode@2.7.0 4 4 BazelBuild.vscode-bazel@0.3.0 5 5 be5invis.toml@0.5.1 6 6 bmalehorn.vscode-fish@1.0.20 7 7 bungcip.better-toml@0.3.2 8 8 codezombiech.gitignore@0.6.0 9 - DavidAnson.vscode-markdownlint@0.36.2 9 + DavidAnson.vscode-markdownlint@0.36.3 10 10 dnicolson.binary-plist@0.4.0 11 11 DotJoshJohnson.xml@2.5.1 12 12 dunstontc.viml@0.1.7 13 13 eamodio.gitlens@10.2.2 14 14 fabiospampinato.vscode-statusbar-debugger@2.0.6 15 - GitHub.vscode-pull-request-github@0.18.0 16 - golang.go@0.15.2 15 + GitHub.vscode-pull-request-github@0.19.0 16 + golang.go@0.16.1 17 17 ian-h-chamberlain.redcode@0.1.1 18 18 IBM.output-colorizer@0.1.2 19 19 janjoerke.jenkins-pipeline-linter-connector@1.2.0 20 + jbenden.c-cpp-flylint@1.5.1 20 21 jeff-hykin.better-cpp-syntax@1.14.32 21 22 korekontrol.saltstack@0.0.8 22 23 kumar-harsh.graphql-for-vscode@1.15.3 23 24 LaurentTreguier.rpm-spec@0.3.0 25 + llvm-vs-code-extensions.vscode-clangd@0.1.6 24 26 mariusschulz.yarn-lock-syntax@0.1.3 25 27 marko2276.yang@0.1.3 26 - matklad.rust-analyzer@0.2.266 27 - ms-azuretools.vscode-docker@1.4.1 28 - ms-pyright.pyright@1.1.60 29 - ms-python.python@2020.7.96456 30 - ms-python.vscode-pylance@2020.7.4 28 + matklad.rust-analyzer@0.2.281 29 + ms-azuretools.vscode-docker@1.5.0 30 + ms-python.python@2020.8.101144 31 + ms-python.vscode-pylance@2020.8.1 32 + ms-vscode-remote.remote-containers@0.134.1 31 33 ms-vscode-remote.remote-ssh@0.51.0 32 34 ms-vscode-remote.remote-ssh-edit@0.51.0 33 35 ms-vscode.cmake-tools@1.4.1 34 36 ms-vscode.cpptools@0.29.0 35 37 ms-vscode.vscode-typescript-tslint-plugin@1.2.3 36 - ms-vsliveshare.vsliveshare@1.0.2478 38 + ms-vsliveshare.vsliveshare@1.0.2666 37 39 redhat.vscode-xml@0.13.0 38 - redhat.vscode-yaml@0.9.1 40 + redhat.vscode-yaml@0.10.0 39 41 richie5um2.vscode-sort-json@1.18.0 40 42 ritwickdey.LiveServer@5.6.1 41 43 sleistner.vscode-fileutils@3.0.1
+7 -6
.gitconfig
··· 12 12 pfetch = fetch -p 13 13 hardreset = reset --hard @{u} 14 14 fpush = push --force-with-lease 15 - ld = log --pretty=format:\"%C(yellow)%h\\ %ad%Cred%d\\ %Creset%s%Cblue\\ [%cn]\" --decorate --date=relative 15 + ld = log --pretty=format:\"%C(yellow)%h\\ %ad%C(red)%d\\ %C(reset)%s%C(blue)\\ [%cn]\" --decorate --date=relative 16 + ls = !sh -c 'git log --reverse --no-merges --pretty=format:\"%C(yellow)%h %C(reset)%s\" --decorate \"$1\"..HEAD' - 16 17 sw = switch 17 18 softreset = reset --soft HEAD~ 18 19 default-branch = !git symbolic-ref refs/remotes/origin/HEAD | sed 's@^refs/remotes/origin/@@' ··· 20 21 alias = "!sh -c '[ $# = 2 ] && git config --global alias.\"$1\" \"$2\" && exit 0 || echo \"usage: git alias <new alias> <original command>\" >&2 && exit 1' -" 21 22 aliases = !git config --get-regexp 'alias.*' | sed -E 's/alias\\.([^[:space:]]+)[[:space:]](.+)/[\\1]'$'\\\\\\n'' \\2/' 22 23 bc = branch-clean 23 - bpull = !sh -c 'git fetch origin $1:$1' - 24 - vdiff = difftool -d HEAD 24 + bpull = !sh -c 'git fetch origin $1:$1' - 25 + vdiff = difftool -d HEAD 25 26 [core] 26 27 excludesfile = ~/.gitignore_global 27 28 editor = vim ··· 42 43 [pull] 43 44 rebase = false 44 45 [commit] 45 - gpgsign = true 46 + gpgsign = true 46 47 [gpg] 47 - program = gpg 48 + program = gpg 48 49 [checkout] 49 - defaultRemote = origin 50 + defaultRemote = origin
+5
.gitignore_global
··· 11 11 GRTAGS 12 12 GTAGS 13 13 14 + # Clangd, CMake etc 15 + .clangd 16 + compile_commands.json 17 + 14 18 # Custom dotfiles-type stuff 15 19 .python-version 16 20 .vscode ··· 19 23 **/bazel-* 20 24 /private/var/tmp/**/* 21 25 fish_variables 26 + .mypy_cache 22 27 23 28 # General 24 29 .DS_Store
+13 -3
.vimrc
··· 28 28 set hlsearch 29 29 syntax on 30 30 31 + " Unbind case-changing with u/U to avoid accidentally press when trying to undo 32 + " For explicitly changing case, ~ can be used instead 33 + vnoremap u <Undo> 34 + vnoremap U <Undo> 35 + 36 + noremap gu <Nop> 37 + noremap guu <Nop> 38 + noremap gU <Nop> 39 + noremap gUU <Nop> 40 + 31 41 32 42 " Augroups, must be before `syntax on` 33 43 ··· 67 77 " Move cursor to end of line when making visual selection so % works as expected 68 78 nmap V V$ 69 79 70 - " This allows wrapping + code folding to work 71 - map j gj 72 - map k gk 80 + " This allows wrapping + code folding to work a little nicer 81 + nmap j gj 82 + nmap k gk 73 83 74 84 " Remap for append/insert with multi-cursor to avoid extra keystroke 75 85 xmap <expr> a visualmode() ==# 'v' ? 'a' : 'ma'
+6 -1
Library/Application Support/Code/User/keybindings.json
··· 604 604 { 605 605 "command": "workbench.action.openGlobalKeybindingsFile", 606 606 "key": "cmd+k cmd+s", 607 - } 607 + }, 608 + { 609 + "command": "clangd.switchheadersource", 610 + "key": "alt+o", 611 + "when": "editorTextFocus", 612 + }, 608 613 ]
+28 -11
Library/Application Support/Code/User/settings.json
··· 49 49 "[python]": { 50 50 "editor.codeActionsOnSave": { 51 51 "source.organizeImports": true, 52 + "source.fixAll": true, 52 53 }, 53 54 "editor.formatOnSave": true, 54 55 "editor.parameterHints.enabled": false, ··· 70 71 "source.fixAll.tslint": true, 71 72 }, 72 73 "editor.tabSize": 2, 74 + "editor.defaultFormatter": "vscode.typescript-language-features", 73 75 }, 74 76 "[xml]": { 75 77 "editor.defaultFormatter": "redhat.vscode-xml", ··· 105 107 106 108 "breadcrumbs.enabled": true, 107 109 108 - "C_Cpp.clang_format_path": "${workspaceFolder}/tools/bin/mac/clang-format", 110 + "C_Cpp.autocomplete": "Default", 111 + "C_Cpp.intelliSenseEngine": "Default", 112 + "C_Cpp.intelliSenseEngineFallback": "Enabled", 109 113 "C_Cpp.workspaceParsingPriority": "low", 110 114 "C_Cpp.workspaceSymbols": "Just My Code", 111 - "C_Cpp.loggingLevel": "Debug", 115 + "C_Cpp.loggingLevel": "Information", 116 + 117 + "c-cpp-flylint.run": "onSave", 118 + "c-cpp-flylint.ignoreParseErrors": false, 112 119 113 120 "cmake.cmakePath": "/usr/local/bin/cmake", 114 121 "cmake.configureOnOpen": false, 122 + "cmake.configureOnEdit": false, 123 + "cmake.skipConfigureIfCachePresent": true, 115 124 116 125 "cSpell.allowCompoundWords": true, 117 126 "cSpell.enableFiletypes": [ ··· 225 234 "popd", 226 235 "pref", 227 236 "prefs", 237 + "printf", 228 238 "prismo", 229 239 "proto", 230 240 "protobuf", ··· 233 243 "pyfakefs", 234 244 "pylint", 235 245 "pyright", 246 + "referencer", 247 + "reimplementation", 248 + "reinitializing", 236 249 "repo", 237 250 "repoquery", 238 251 "repos", ··· 241 254 "splitn", 242 255 "spotify", 243 256 "srcs", 257 + "streq", 258 + "stringize", 244 259 "syslog", 245 260 "systemctl", 246 261 "systemd", 247 262 "tmux", 248 263 "unconfigure", 264 + "ungrouped", 265 + "unstaged", 249 266 "untracked", 250 267 "virtualenv", 251 268 "vmlinuz", 269 + "xargs", 252 270 "yadm" 253 271 ], 254 272 255 273 "debug.internalConsoleOptions": "openOnSessionStart", 256 274 257 275 "diffEditor.ignoreTrimWhitespace": true, 258 - "diffEditor.renderSideBySide": true, 276 + "diffEditor.renderSideBySide": false, 259 277 260 278 "editor.accessibilitySupport": "off", 261 279 "editor.fontFamily": "Input Mono, Monaco, 'Courier New', monospace", ··· 310 328 "Cargo.lock": "toml", 311 329 "gdbinit": "shellscript", 312 330 "vimrc": "viml", 313 - "yarn.lock": "yarnlock" 331 + "yarn.lock": "yarnlock", 332 + ".clangd": "yaml" 314 333 }, 315 334 "files.exclude": { 316 335 "**/.DS_Store": true, ··· 330 349 "git.openDiffOnClick": false, 331 350 332 351 "githubIssues.useBranchForIssues": "prompt", 333 - "githubIssues.workingIssueBranch": "ian/issue${issueNumber}", 352 + "githubIssues.issueBranchTitle": "ian/issue${issueNumber}", 334 353 "githubPullRequests.telemetry.enabled": false, 335 354 "githubPullRequests.pullRequestTitle": "ask", 336 355 ··· 424 443 "DONE", 425 444 ], 426 445 427 - "pyright.disableLanguageServices": true, 428 - "pyright.disableOrganizeImports": true, 429 - 430 446 "python.analysis.useLibraryCodeForTypes": true, 431 447 "python.dataScience.enabled": false, 432 448 "python.formatting.provider": "black", 433 - "python.languageServer": "Jedi", 449 + "python.languageServer": "Pylance", 434 450 "python.linting.lintOnSave": true, 435 451 "python.pythonPath": "~/.pyenv/shims/python", 436 452 "python.showStartPage": false, ··· 471 487 "shader-toy.reloadOnEditText": true, 472 488 473 489 "shellcheck.run": "onSave", 474 - "shellcheck.useWorkspaceRootAsCwd": true, 490 + "shellcheck.useWorkspaceRootAsCwd": false, 475 491 "shellcheck.customArgs": ["--external-sources"], 476 492 "shellcheck.enableQuickFix": true, 477 493 "shellcheck.ignorePatterns": { ··· 619 635 "workbench.startupEditor": "newUntitledFile", 620 636 621 637 "yaml.schemas": { 622 - "file:///Users/ichamberlain/.vscode/extensions/atlassian.atlascode-2.6.6/resources/schemas/pipelines-schema.json": "bitbucket-pipelines.yml" 638 + "file:///Users/ichamberlain/.vscode/extensions/atlassian.atlascode-2.7.0/resources/schemas/pipelines-schema.json": "bitbucket-pipelines.yml" 623 639 }, 640 + "clangd.path": "/Users/ichamberlain/Library/Application Support/Code/User/globalStorage/llvm-vs-code-extensions.vscode-clangd/install/10.0.0/clangd_10.0.0/bin/clangd", 624 641 }