clone of my dotfiles.ssp.sh
1
fork

Configure Feed

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

change obsidian, remove a bunch of plugins

sspaeti 357d0b93 0e9e6564

+34 -49
+10 -5
obsidian/.vimrc
··· 1 - 2 - 3 1 " remap esc key 4 2 imap kj <Esc> 5 3 imap jk <Esc> ··· 11 9 noremap <C-k> k 12 10 nmap j gj 13 11 nmap k gk 14 - " nmap $ g$ 15 - " nmap ^ g^ 16 - " nmap 0 g^ 17 12 18 13 " better scrolling and searching with centered always 19 14 noremap <c-d> <C-d>zz ··· 25 20 26 21 "yank to clipboard 27 22 set clipboard=unnamed 23 + 24 + " " Go back and forward with Ctrl+O and Ctrl+I 25 + " " (make sure to remove default Obsidian shortcuts for these to work) 26 + " exmap back obcommand app:go-back 27 + " nmap <C-o> :back 28 + " exmap forward obcommand app:go-forward 29 + " nmap <C-i> :forward 30 + 31 + " exmap togglefold obcommand editor:toggle-fold 32 + " nmap za togglefold
+1 -1
obsidian/appearance.json
··· 4 4 "theme": "obsidian", 5 5 "enabledCssSnippets": [ 6 6 "hide_file_in_filetree", 7 - "mermaid" 7 + "better_pdf" 8 8 ], 9 9 "translucency": false, 10 10 "accentColor": "#658594",
+4 -35
obsidian/community-plugins.json
··· 1 1 [ 2 - "obsidian-reading-time", 3 - "nldates-obsidian", 4 2 "txt-as-md-obsidian", 5 3 "obsidian-vimrc-support", 6 - "templater-obsidian", 7 - "table-editor-obsidian", 8 - "note-folder-autorename", 9 - "dataview", 10 - "notetweet", 11 - "obsidian-kanban", 12 - "obsidian-relative-line-numbers", 13 - "obsidian-pandoc", 14 - "tag-wrangler", 15 - "extract-highlights-plugin", 16 - "obsidian-kindle-plugin", 17 - "obsidian-admonition", 18 - "excalibrain", 19 - "obsidian-excalidraw-plugin", 20 4 "omnisearch", 21 - "obsidian-auto-link-title", 22 - "calendar", 23 - "obsidian-journey-plugin", 24 - "obsidian-style-settings", 25 - "quickadd", 26 5 "remember-cursor-position", 27 6 "obsidian-scroll-offset", 28 - "obsidian-plugin-toc", 29 - "obsidian-dynamic-toc", 30 - "obsidian-advanced-uri", 31 7 "obsidian-list-callouts", 32 - "mrj-jump-to-link", 33 - "settings-search", 34 - "obsidian-importer", 35 - "obsidian-day-planner", 36 - "obsidian-plugin-todo", 37 - "ollama", 38 8 "obsidian-hider", 39 - "readwise-official", 40 - "better-word-count", 41 - "obsidian-footnotes", 42 - "obsidian-prozen", 43 - "tray" 9 + "templater-obsidian", 10 + "dataview", 11 + "lazy-plugins", 12 + "image-converter" 44 13 ]
+1
obsidian/core-plugins.json
··· 15 15 "markdown-importer", 16 16 "zk-prefixer", 17 17 "outline", 18 + "word-count", 18 19 "audio-recorder", 19 20 "workspaces", 20 21 "file-recovery",
+9 -8
obsidian/hotkeys.json
··· 166 166 "key": "O" 167 167 } 168 168 ], 169 - "workspace:new-tab": [ 170 - { 171 - "modifiers": [ 172 - "Ctrl" 173 - ], 174 - "key": "T" 175 - } 176 - ], 169 + "workspace:new-tab": [], 177 170 "workspace:toggle-stacked-tabs": [ 178 171 { 179 172 "modifiers": [ ··· 381 374 "Shift" 382 375 ], 383 376 "key": "Z" 377 + } 378 + ], 379 + "theme:switch": [ 380 + { 381 + "modifiers": [ 382 + "Ctrl" 383 + ], 384 + "key": "T" 384 385 } 385 386 ] 386 387 }
+9
obsidian/snippets/better_pdf.css
··· 1 + @media print { 2 + body { 3 + --font-interface-override: "Atkinson Hyperlegible" !important; 4 + --font-text-override: "Atkinson Hyperlegible" !important; 5 + --font-print-override: "Atkinson Hyperlegible" !important; 6 + --font-monospace-override: "Iosevka" !important; 7 + font-family: "Atkinson Hyperlegible" !important; 8 + } 9 + }