Created
March 25, 2020 11:13
-
-
Save xenophy/4c76cf52e9b09694b1589fac5f4d7604 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if has('vim_starting') | |
" 挿入モード時に非点滅の縦棒タイプのカーソル | |
let &t_SI .= "\e[6 q" | |
" ノーマルモード時に非点滅のブロックタイプのカーソル | |
let &t_EI .= "\e[2 q" | |
" 置換モード時に非点滅の下線タイプのカーソル | |
let &t_SR .= "\e[4 q" | |
endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment