this repo has no description
0
fork

Configure Feed

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

Add rdsh function

Minor settings updates

+26 -2
+2
.config/fish/.gitignore
··· 1 + # Files managed by `fisher` 2 + fisher_install/
+7
.config/fish/functions/rdsh.fish
··· 1 + function rdsh 2 + set -l tmux_cmd tmux new dsh 3 + if test $TERM_PROGRAM = "iTerm.app"; 4 + set tmux_cmd tmux -CC new dsh 5 + end 6 + rpush && vssh -t "$tmux_cmd" 7 + end
+3
.config/fish/functions/rpmlint.fish
··· 1 + function rpmlint 2 + docker run rpmlint $argv 3 + end
+14 -2
Library/Application Support/Code/User/settings.json
··· 103 103 "cmake.cmakePath": "/usr/local/bin/cmake", 104 104 "cmake.configureOnOpen": false, 105 105 106 + "cSpell.userWords": [ 107 + "CentOS", 108 + "DUT", 109 + "mgmt", 110 + "pref", 111 + "prefs", 112 + "repo", 113 + "repos", 114 + "RPM", 115 + ], 116 + 106 117 "debug.internalConsoleOptions": "openOnSessionStart", 107 118 108 119 "diffEditor.ignoreTrimWhitespace": true, ··· 284 295 ], 285 296 286 297 "pyright.disableLanguageServices": true, 298 + "pyright.disableOrganizeImports": true, 299 + "pyright.useLibraryCodeForTypes": true, 300 + 287 301 "python.dataScience.enabled": false, 288 302 "python.formatting.provider": "black", 289 303 "python.linting.lintOnSave": true, ··· 466 480 "yaml.schemas": { 467 481 "file:///Users/ichamberlain/.vscode/extensions/atlassian.atlascode-2.6.4/resources/schemas/pipelines-schema.json": "bitbucket-pipelines.yml" 468 482 }, 469 - "pyright.disableOrganizeImports": true, 470 - "pyright.useLibraryCodeForTypes": true, 471 483 }