以下のリポジトリで管理。
<div class="link-card-v2">
<div class="link-card-v2-site">
<img class="link-card-v2-site-icon" src="https://github.githubassets.com/favicons/favicon.svg" />
<span class="link-card-v2-site-name">GitHub</span>
</div>
<div class="link-card-v2-title">
toki/mnt/obsidian/obsidian.vimrc at main · tadashi-aikawa/toki
</div>
<div class="link-card-v2-content">
macOSのセットアップ/カスタマイズプロジェクト 誓いの時は来た! 今 わたしは あなた(Windows)を超える!! - tadashi-aikawa/toki ...
</div>
<img class="link-card-v2-image" src="https://repository-images.githubusercontent.com/977129105/89cc86a4-ebae-4927-8d0e-a1707375fb45" />
<a href="https://github.com/tadashi-aikawa/toki/blob/main/mnt/obsidian/obsidian.vimrc"></a>
</div>
> [!info]- Windows版 (古い)
>
> ```vim
> set clipboard=unnamed
> unmap <Space>
>
> exmap q obcommand workspace:close
>
> exmap jumpToLink obcommand mrj-jump-to-link:activate-lightspeed-jump
> nmap s :jumpToLink<CR>
>
> exmap pasteURLToSiteLink obcommand carnelian:carnelian_paste-url-to-site-link
> nmap gp :pasteURLToSiteLink<CR>
> exmap pasteSiteCard obcommand carnelian:carnelian_paste-site-card
> nmap gP :pasteSiteCard<CR>
>
> exmap undo jscommand { editor.undo(); editor.setCursor(editor.getCursor()) }
> nmap u :undo<CR>
> exmap redo jscommand { editor.redo(); editor.setCursor(editor.getCursor()) }
> nmap <C-r> :redo<CR>
>
> exmap gotoprevioustab obcommand workspace:previous-tab
> nmap <C-w>h :gotoprevioustab<CR>
> exmap gotonexttab obcommand workspace:next-tab
> nmap <C-w>l :gotonexttab<CR>
> exmap newtab obcommand workspace:new-tab
> nmap <C-w>v :newtab<CR>
>
> exmap splithorizontal obcommand workspace:split-horizontal
> nmap <C-w>s :splithorizontal<CR>
> exmap focustop obcommand editor:focus-top
> nmap <C-w>k :focustop<CR>
> exmap focusbottom obcommand editor:focus-bottom
> nmap <C-w>j :focusbottom<CR>
>
> exmap closeothertabs obcommand workspace:close-others-tab-group
> nmap <Space>c :closeothertabs<CR>
> exmap fixLink obcommand carnelian:carnelian_fix-link
> nmap <Space>l :fixLink<CR>
> exmap updateChangeLog obcommand carnelian:carnelian_update-change-log
> nmap <Space>u :updateChangeLog<CR>
> exmap addPropertySuitably obcommand carnelian:carnelian_add-property-suitably
> nmap <Space>k :addPropertySuitably<CR>
> exmap transformMOC obcommand carnelian:carnelian_transform-moc
> nmap <Space>m :transformMOC<CR>
> exmap transformToV2OGPCard obcommand carnelian:carnelian_transform-to-v2-ogp-card
> nmap <Space>o :transformToV2OGPCard<CR>
> exmap reopenlastpane obcommand workspace:undo-close-pane
> nmap <Space>t :reopenlastpane<CR>
> exmap movelastpane obcommand cycle-through-panes:focus-on-last-active-pane
> nmap <Space>w :movelastpane<CR>
> exmap surroundbrackets surround [[ ]]
> nmap <Space>] :surroundbrackets<CR>
> exmap surroundbackquote surround ` `
> nmap <Space>@ :surroundbackquote<CR>
> exmap surrounddoublequote surround " "
> nmap <Space>" :surrounddoublequote<CR>
> exmap surroundsinglequote surround ' '
> nmap <Space>' :surroundsinglequote<CR>
> ```