diff options
-rw-r--r-- | vimrcs/myset.vim | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/vimrcs/myset.vim b/vimrcs/myset.vim index 4bd8ca3..9424193 100644 --- a/vimrcs/myset.vim +++ b/vimrcs/myset.vim | |||
@@ -19,8 +19,8 @@ set list " 显示tab和空格 | |||
19 | set listchars=tab:>-,trail:-,extends:> " 设置tab和空格的显示方式 | 19 | set listchars=tab:>-,trail:-,extends:> " 设置tab和空格的显示方式 |
20 | set cul | 20 | set cul |
21 | set cuc | 21 | set cuc |
22 | autocmd VimEnter * hi CursorLine cterm=NONE ctermbg=red ctermfg=NONE guibg=darkblue guifg=NONE | 22 | " autocmd VimEnter * hi CursorLine cterm=NONE ctermbg=red ctermfg=NONE guibg=darkblue guifg=NONE |
23 | autocmd VimEnter * hi CursorColumn cterm=NONE ctermbg=red ctermfg=NONE guibg=darkblue guifg=NONE | 23 | " autocmd VimEnter * hi CursorColumn cterm=NONE ctermbg=red ctermfg=NONE guibg=darkblue guifg=NONE |
24 | 24 | ||
25 | " Set cursor shape and color | 25 | " Set cursor shape and color |
26 | if &term =~ "xterm" | 26 | if &term =~ "xterm" |
@@ -37,3 +37,12 @@ endif | |||
37 | " 4 -> solid underscore 不闪烁的下划线 | 37 | " 4 -> solid underscore 不闪烁的下划线 |
38 | " 5 -> blinking vertical bar 闪烁的竖线 | 38 | " 5 -> blinking vertical bar 闪烁的竖线 |
39 | " 6 -> solid vertical bar 不闪烁的竖线 | 39 | " 6 -> solid vertical bar 不闪烁的竖线 |
40 | |||
41 | " Set cursor shape and color | ||
42 | " set termguicolors | ||
43 | " set guicursor=n-v-c:block-Cursor | ||
44 | " set guicursor:i-ci:ver25-CursorInsert | ||
45 | " set guicursor:r-cr-o:hor20-CursorReplace | ||
46 | " highlight Cursor guifg=NONE guibg=NONE ctermfg=NONE ctermbg=green | ||
47 | " highlight CursorInsert guifg=NONE guibg=NONE ctermfg=NONE ctermbg=black | ||
48 | " highlight CursorReplace guifg=NONE guibg=NONE ctermfg=NONE ctermbg=blue | ||