作者:
pig (歡迎加入豬頭黨)
2024-07-11 23:57:34今天遇到兩個 neovim 的小卡關
https://neovim.io/doc/user/news-0.10.html
0.10 預設的 color scheme 改掉了,而且似乎只有 light mode
還好可以改回原本的 style,不過為了跟 vim 相容所以要寫成 nvim 限定
vimrc 裡面加這個
if has('nvim')
:colorscheme vim
endif
另外一個是 tmux 下開 vim 的話 home/end 不會動,
要在 tmux.conf 加這個
bind-key -n Home send Escape "OH"
bind-key -n End send Escape "OF"