[[📕tadashi-aikawa]]の[[Notes/obsidian.vimrc|.obsidian.vimrc]]設定。 ```vim set clipboard=unnamed unmap <Space> exmap q obcommand workspace:close exmap movelastpane obcommand cycle-through-panes:focus-on-last-active-pane map <Space>w :movelastpane<CR> exmap jumpToLink obcommand mrj-jump-to-link:activate-lightspeed-jump nmap s :jumpToLink<CR> exmap reopenlastpane obcommand workspace:undo-close-pane nmap <Space>t :reopenlastpane<CR> exmap closeothertabs obcommand workspace:close-others-tab-group nmap <Space>c :closeothertabs<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 surroundbrackets surround [[ ]] map <Space>] :surroundbrackets<CR> exmap surroundbackquote surround ` ` map <Space>@ :surroundbackquote<CR> exmap surrounddoublequote surround " " map <Space>" :surrounddoublequote<CR> exmap surroundsinglequote surround ' ' map <Space>' :surroundsinglequote<CR> ```