clone of my dotfiles.ssp.sh
1
fork

Configure Feed

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

Mainly add obsidian shortcuts

sspaeti eacfb790 4ce6a2b1

+442 -13
+5
Brewfile
··· 1 1 tap "adoptopenjdk/openjdk" 2 + tap "coursier/formulas" 2 3 tap "homebrew/bundle" 3 4 tap "homebrew/cask" 4 5 tap "homebrew/cask-versions" ··· 8 9 tap "osx-cross/arm" 9 10 tap "osx-cross/avr" 10 11 tap "qmk/qmk" 12 + tap "scalacenter/bloop" 11 13 brew "bash-completion" 12 14 brew "commitizen" 13 15 brew "docker", link: false ··· 20 22 brew "pandoc" 21 23 brew "postgresql", restart_service: true 22 24 brew "python@3.8", link: true 25 + brew "sbt" 26 + brew "scala" 23 27 brew "tig" 24 28 brew "tmux" 25 29 brew "tree" ··· 31 35 brew "minio/stable/minio" 32 36 brew "qmk/qmk/qmk" 33 37 cask "adoptopenjdk11" 38 + cask "istat-menus" 34 39 cask "mark-text"
+11
backup_dotfiles.sh
··· 14 14 cp ~/.tmux/ide $git/general/dotfiles/tmux/ide 15 15 cp ~/.tmux/tmux-session $git/general/dotfiles/tmux/tmux-session 16 16 17 + 18 + #obsidian 19 + cp ~/Simon/Sync/SecondBrain/.obsidian/workspace $git/general/dotfiles/obsidian/workspace 20 + cp ~/Simon/Sync/SecondBrain/.obsidian/hotkeys.json $git/general/dotfiles/obsidian/hotkeys.json 21 + cp ~/Simon/Sync/SecondBrain/.obsidian/core-plugins.json $git/general/dotfiles/obsidian/core-plugins.json 22 + cp ~/Simon/Sync/SecondBrain/.obsidian/community-plugins.json $git/general/dotfiles/obsidian/community-plugins.json 23 + cp ~/Simon/Sync/SecondBrain/.obsidian/appearance.json $git/general/dotfiles/obsidian/appearance.json 24 + cp ~/Simon/Sync/SecondBrain/.obsidian/app.json $git/general/dotfiles/obsidian/app.json 25 + 17 26 brew bundle dump > $git/general/dotfiles/Brewfile -f 27 + 28 + 18 29 19 30 source $venvs/dagster/bin/activate 20 31 pip freeze > $git/general/dotfiles/python/venvs/dagster.txt
+4
nvim/init.vim
··· 253 253 "auto format on save with Black 254 254 autocmd BufWritePre *.py execute ':Black' 255 255 256 + " Custom surrounds 257 + let w:surround_{char2nr('w')} = "```\r```" 258 + let b:surround_{char2nr('b')} = "**\r**" 259 + 256 260 257 261 "cusotm stuff just for neovim 258 262 source $HOME/.config/nvim/themes/airline.vim
+65
obsidian/app.json
··· 1 + { 2 + "mobileToolbarCommands": [ 3 + "editor:toggle-bullet-list", 4 + "editor:indent-list", 5 + "editor:unindent-list", 6 + "editor:insert-wikilink", 7 + "editor:insert-embed", 8 + "editor:insert-tag", 9 + "editor:attach-file", 10 + "editor:set-heading", 11 + "editor:toggle-bold", 12 + "editor:toggle-italics", 13 + "editor:toggle-strikethrough", 14 + "editor:toggle-highlight", 15 + "editor:toggle-code", 16 + "editor:toggle-blockquote", 17 + "editor:insert-link", 18 + "editor:toggle-numbered-list", 19 + "editor:toggle-checklist-status", 20 + "editor:undo", 21 + "editor:redo", 22 + "editor:toggle-keyboard", 23 + "editor:configure-toolbar" 24 + ], 25 + "mobilePullAction": "switcher:open", 26 + "alwaysUpdateLinks": true, 27 + "promptDelete": false, 28 + "vimMode": true, 29 + "newFileLocation": "folder", 30 + "showUnsupportedFiles": false, 31 + "attachmentFolderPath": "./", 32 + "readableLineLength": false, 33 + "pdfExportSettings": { 34 + "pageSize": "A4", 35 + "landscape": false, 36 + "margin": "0", 37 + "downscalePercent": 100 38 + }, 39 + "fileSortOrder": "alphabetical", 40 + "foldIndent": true, 41 + "foldHeading": true, 42 + "newFileFolderPath": "⚛️ Areas/📬 Inbox", 43 + "showLineNumber": false, 44 + "spellcheck": false, 45 + "spellcheckDictionary": [ 46 + "Spetter", 47 + "Villard", 48 + "Arun", 49 + "Evelyne", 50 + "Gosteli", 51 + "tzenweg", 52 + "tzenweg", 53 + "Arnaud", 54 + "MEG", 55 + "fliessen", 56 + "schliesen", 57 + "parkiert", 58 + "Miteigentümerkonto", 59 + "BEKB", 60 + "Miteigentümerkonto", 61 + "schliessen", 62 + "heisst" 63 + ], 64 + "legacyEditor": false 65 + }
+9
obsidian/appearance.json
··· 1 + { 2 + "baseFontSize": 17, 3 + "cssTheme": "Obsidian gruvbox", 4 + "theme": "obsidian", 5 + "enabledCssSnippets": [ 6 + "hide_file_in_filetree" 7 + ], 8 + "translucency": false 9 + }
+26
obsidian/community-plugins.json
··· 1 + [ 2 + "obsidian-plugin-todo", 3 + "obsidian-reading-time", 4 + "obsidian-zoom", 5 + "nldates-obsidian", 6 + "txt-as-md-obsidian", 7 + "obsidian-vimrc-support", 8 + "templater-obsidian", 9 + "table-editor-obsidian", 10 + "readwise-official", 11 + "note-folder-autorename", 12 + "obsidian-outliner", 13 + "dataview", 14 + "notetweet", 15 + "obsidian-auto-link-title", 16 + "obsidian-kanban", 17 + "workbench-obsidian", 18 + "taskbone-ocr-plugin", 19 + "obsidian-relative-line-numbers", 20 + "obsidian-pandoc", 21 + "sliding-panes-obsidian", 22 + "tag-wrangler", 23 + "extract-highlights-plugin", 24 + "oz-image-plugin", 25 + "obsidian-languagetool-plugin" 26 + ]
+18
obsidian/core-plugins.json
··· 1 + [ 2 + "file-explorer", 3 + "global-search", 4 + "switcher", 5 + "graph", 6 + "backlink", 7 + "tag-pane", 8 + "page-preview", 9 + "note-composer", 10 + "command-palette", 11 + "markdown-importer", 12 + "zk-prefixer", 13 + "outline", 14 + "word-count", 15 + "open-with-default-app", 16 + "file-recovery", 17 + "sync" 18 + ]
+69
obsidian/hotkeys.json
··· 1 + { 2 + "file-explorer:open": [ 3 + { 4 + "modifiers": [ 5 + "Mod", 6 + "Shift" 7 + ], 8 + "key": "E" 9 + } 10 + ], 11 + "obsidian-auto-link-title:enhance-url-with-title": [], 12 + "file-explorer:move-file": [ 13 + { 14 + "modifiers": [ 15 + "Mod" 16 + ], 17 + "key": "M" 18 + } 19 + ], 20 + "app:toggle-left-sidebar": [ 21 + { 22 + "modifiers": [ 23 + "Mod" 24 + ], 25 + "key": "L" 26 + } 27 + ], 28 + "app:toggle-right-sidebar": [ 29 + { 30 + "modifiers": [ 31 + "Mod" 32 + ], 33 + "key": "R" 34 + } 35 + ], 36 + "file-explorer:reveal-active-file": [ 37 + { 38 + "modifiers": [ 39 + "Mod", 40 + "Shift" 41 + ], 42 + "key": "R" 43 + } 44 + ], 45 + "editor:focus-left": [ 46 + { 47 + "modifiers": [ 48 + "Ctrl" 49 + ], 50 + "key": "H" 51 + } 52 + ], 53 + "editor:focus-right": [ 54 + { 55 + "modifiers": [ 56 + "Ctrl" 57 + ], 58 + "key": "L" 59 + } 60 + ], 61 + "templater-obsidian:insert-templater": [ 62 + { 63 + "modifiers": [ 64 + "Mod" 65 + ], 66 + "key": "T" 67 + } 68 + ] 69 + }
+197
obsidian/workspace
··· 1 + { 2 + "main": { 3 + "id": "a35d0db2c8ba4ea5", 4 + "type": "split", 5 + "children": [ 6 + { 7 + "id": "60866eeb15d7097a", 8 + "type": "leaf", 9 + "state": { 10 + "type": "markdown", 11 + "state": { 12 + "file": "⚛️ Areas/📬 Inbox/My Mental Workflow with GTD, SecondBrain and SmartNoteTaking.md", 13 + "mode": "source", 14 + "source": false 15 + } 16 + } 17 + } 18 + ], 19 + "direction": "vertical" 20 + }, 21 + "left": { 22 + "id": "9ca8768b404c499d", 23 + "type": "split", 24 + "children": [ 25 + { 26 + "id": "2bb45565a393acf5", 27 + "type": "tabs", 28 + "children": [ 29 + { 30 + "id": "5753767794e2fe20", 31 + "type": "leaf", 32 + "state": { 33 + "type": "file-explorer", 34 + "state": {} 35 + } 36 + }, 37 + { 38 + "id": "043896868bb037b1", 39 + "type": "leaf", 40 + "state": { 41 + "type": "search", 42 + "state": { 43 + "query": "duckdb", 44 + "matchingCase": false, 45 + "explainSearch": false, 46 + "collapseAll": true, 47 + "extraContext": true, 48 + "sortOrder": "alphabetical" 49 + } 50 + } 51 + }, 52 + { 53 + "id": "afaca6486017ef41", 54 + "type": "leaf", 55 + "state": { 56 + "type": "tag", 57 + "state": { 58 + "sortOrder": "frequency", 59 + "useHierarchy": true 60 + } 61 + } 62 + } 63 + ] 64 + } 65 + ], 66 + "direction": "horizontal", 67 + "width": 319.5, 68 + "collapsed": true 69 + }, 70 + "right": { 71 + "id": "7b34a42266f03cbc", 72 + "type": "split", 73 + "children": [ 74 + { 75 + "id": "ea371bd70ce46513", 76 + "type": "tabs", 77 + "dimension": 23.58490566037736, 78 + "children": [ 79 + { 80 + "id": "15a2709836bbd16c", 81 + "type": "leaf", 82 + "state": { 83 + "type": "outline", 84 + "state": { 85 + "file": "⚛️ Areas/📬 Inbox/My Mental Workflow with GTD, SecondBrain and SmartNoteTaking.md" 86 + } 87 + } 88 + }, 89 + { 90 + "id": "ddb0bcce15e78a0d", 91 + "type": "leaf", 92 + "state": { 93 + "type": "online.larslockefeer.obsidian-plugin-todo", 94 + "state": {} 95 + } 96 + } 97 + ] 98 + }, 99 + { 100 + "id": "682b71d3e4b0b542", 101 + "type": "tabs", 102 + "dimension": 30.424528301886795, 103 + "children": [ 104 + { 105 + "id": "f12a4c27da0cfe28", 106 + "type": "leaf", 107 + "state": { 108 + "type": "localgraph", 109 + "state": { 110 + "file": "⚛️ Areas/📬 Inbox/My Mental Workflow with GTD, SecondBrain and SmartNoteTaking.md", 111 + "options": { 112 + "collapse-filter": false, 113 + "search": "", 114 + "localJumps": 1, 115 + "localBacklinks": true, 116 + "localForelinks": true, 117 + "localInterlinks": false, 118 + "showTags": false, 119 + "showAttachments": false, 120 + "hideUnresolved": false, 121 + "collapse-color-groups": true, 122 + "colorGroups": [ 123 + { 124 + "query": "tag:#🗃", 125 + "color": { 126 + "a": 1, 127 + "rgb": 2454549 128 + } 129 + }, 130 + { 131 + "query": "🔗", 132 + "color": { 133 + "a": 1, 134 + "rgb": 12526114 135 + } 136 + } 137 + ], 138 + "collapse-display": true, 139 + "showArrow": false, 140 + "textFadeMultiplier": 0, 141 + "nodeSizeMultiplier": 1, 142 + "lineSizeMultiplier": 1, 143 + "collapse-forces": true, 144 + "centerStrength": 0.518713248970312, 145 + "repelStrength": 10, 146 + "linkStrength": 1, 147 + "linkDistance": 250, 148 + "scale": 0.47791357988681826, 149 + "close": true 150 + } 151 + } 152 + } 153 + } 154 + ] 155 + }, 156 + { 157 + "id": "f02bd5e72b99ee5d", 158 + "type": "tabs", 159 + "dimension": 45.990566037735846, 160 + "children": [ 161 + { 162 + "id": "f6ec3c3761eee3d3", 163 + "type": "leaf", 164 + "state": { 165 + "type": "backlink", 166 + "state": { 167 + "file": "⚛️ Areas/📬 Inbox/My Mental Workflow with GTD, SecondBrain and SmartNoteTaking.md", 168 + "collapseAll": true, 169 + "extraContext": false, 170 + "sortOrder": "alphabetical", 171 + "showSearch": false, 172 + "searchQuery": "", 173 + "backlinkCollapsed": false, 174 + "unlinkedCollapsed": true 175 + } 176 + } 177 + } 178 + ] 179 + } 180 + ], 181 + "direction": "horizontal", 182 + "width": 269.5 183 + }, 184 + "active": "60866eeb15d7097a", 185 + "lastOpenFiles": [ 186 + "⚛️ Areas/📬 Inbox/My Mental Workflow with GTD, SecondBrain and SmartNoteTaking.md", 187 + "⚛️ Areas/⌨️ sspaeti-com/✍🏻 Writing/✍🏻 Writing Kanban.md", 188 + "⚛️ Areas/📬 Inbox/Obsidian Hotkeys.md", 189 + "💡 Resources/🌍 Wiki 📂 Files/🔧 Productivity/Tools/💎 Obsidian/Obsidian.md", 190 + "⚛️ Areas/📓 Journal/Dalies/2021 Daily.md", 191 + "💡 Resources/🗃 Zettelkasten/Second Brain.md", 192 + "💡 Resources/🌍 Wiki 📂 Files/🔧 Productivity/🧠 Second Brain/Zettelkasten Literature/How To Take Smart Notes- 10 Principles to Revolutionize Your Note-Taking and Writing.md", 193 + "⚛️ Areas/📬 Inbox/R Readwise/Articles/Building a Second Brain - ReadWise.md", 194 + "💡 Resources/🌍 Wiki 📂 Files/🔧 Productivity/🧠 Second Brain/Visual/Building a Second Brain Visual.md", 195 + "💡 Resources/🌍 Wiki 📂 Files/🔧 Productivity/🧠 Second Brain/How to build a Second Brain.md" 196 + ] 197 + }
+25 -11
python/venvs/dagster.txt
··· 2 2 amqp==2.6.0 3 3 aniso8601==7.0.0 4 4 ansiwrap==0.8.4 5 + anyio==3.5.0 5 6 appdirs==1.4.4 6 7 appnope==0.1.0 8 + asgiref==3.5.0 7 9 astroid==2.4.2 8 10 atomicwrites==1.4.0 9 11 attrs==19.3.0 ··· 33 35 croniter==0.3.34 34 36 cryptography==3.1.1 35 37 cycler==0.10.0 36 - dagit==0.11.9 37 - dagster==0.11.9 38 - dagster-aws==0.11.9 38 + dagit==0.14.1 39 + dagster==0.14.1 40 + dagster-aws==0.14.1 39 41 dagster-cron==0.11.9 40 - dagster-graphql==0.11.9 41 - dagster-pandas==0.11.9 42 - dagster-postgres==0.11.9 43 - dagster-pyspark==0.11.9 44 - dagster-spark==0.11.9 45 - dagstermill==0.11.9 42 + dagster-graphql==0.14.1 43 + dagster-pandas==0.14.1 44 + dagster-postgres==0.14.1 45 + dagster-pyspark==0.14.1 46 + dagster-spark==0.14.1 47 + dagstermill==0.14.1 46 48 decorator==4.4.2 47 49 defusedxml==0.6.0 48 50 descartes==1.1.0 ··· 88 90 greenlet==0.4.16 89 91 grpcio==1.33.2 90 92 grpcio-health-checking==1.33.2 93 + h11==0.13.0 91 94 httplib2==0.18.1 95 + httptools==0.3.0 92 96 humanfriendly==8.2 93 97 humanize==2.5.0 94 98 idna==2.10 ··· 128 132 moto==1.3.16 129 133 msgpack==1.0.2 130 134 munch==2.5.0 135 + mypy==0.931 131 136 mypy-extensions==0.4.3 132 137 natsort==7.0.1 133 138 nbconvert==5.6.1 ··· 138 143 numpy==1.19.0 139 144 oauth2client==4.1.3 140 145 oauthlib==3.1.0 141 - packaging==20.4 146 + packaging==21.3 142 147 pandas==1.0.5 143 148 pandasql==0.7.3 144 149 pandocfilters==1.4.2 ··· 178 183 pytest==4.6.7 179 184 python-crontab==2.5.1 180 185 python-dateutil==2.8.1 186 + python-dotenv==0.19.2 181 187 python-editor==1.0.4 182 188 python-jose==3.2.0 183 189 pytz==2020.1 ··· 199 205 seaborn==0.11.0 200 206 Shapely==1.7.1 201 207 six==1.15.0 208 + sniffio==1.2.0 202 209 soupsieve==2.0.1 203 210 SQLAlchemy==1.3.18 204 211 sshpubkeys==3.1.0 212 + starlette==0.18.0 205 213 tabulate==0.8.7 206 214 tenacity==6.2.0 207 215 testpath==0.4.4 ··· 209 217 textwrap3==0.9.2 210 218 threadpoolctl==2.1.0 211 219 toml==0.10.1 220 + tomli==2.0.1 212 221 toposort==1.5 213 222 tornado==6.0.4 214 223 tox==3.14.2 215 224 tqdm==4.48.0 216 225 traitlets==4.3.3 217 226 typed-ast==1.4.1 218 - typing-extensions==3.7.4.3 227 + typing-compat==0.1.0 228 + typing-extensions==4.1.1 219 229 tzlocal==1.5.1 220 230 uritemplate==3.0.1 221 231 urllib3==1.25.10 232 + uvicorn==0.17.5 233 + uvloop==0.16.0 222 234 vine==1.3.0 223 235 virtualenv==20.0.34 224 236 watchdog==0.10.3 237 + watchgod==0.7 225 238 wcwidth==0.2.5 226 239 webencodings==0.5.1 227 240 websocket-client==0.57.0 241 + websockets==10.2 228 242 Werkzeug==1.0.1 229 243 wrapt==1.12.1 230 244 xmltodict==0.12.0
+13 -2
vscode/settings.json
··· 280 280 "<C-f>": false 281 281 }, 282 282 "editor.lineNumbers": "relative", 283 - "window.zoomLevel": 1, 284 283 "redhat.telemetry.enabled": false, 285 284 "editor.inlineSuggest.enabled": true, 286 - "security.workspace.trust.untrustedFiles": "open" 285 + "security.workspace.trust.untrustedFiles": "open", 286 + "window.zoomLevel": 1, 287 + "github.copilot.enable": { 288 + "*": true, 289 + "yaml": false, 290 + "plaintext": true, 291 + "markdown": false 292 + }, 293 + "files.watcherExclude": { 294 + "**/.bloop": true, 295 + "**/.metals": true, 296 + "**/.ammonite": true 297 + } 287 298 }