diff options
author | Henry John Kupty <hkupty@users.noreply.github.com> | 2016-12-09 23:56:24 -0200 |
---|---|---|
committer | Ike Ku <dempfi@yahoo.com> | 2016-12-10 03:56:24 +0200 |
commit | bf95f902389e95b3b7a7cf8698903ae157a9f548 (patch) | |
tree | 2ec7ecc870afee9b6b8d2f0e9d9432cd0d38df82 | |
parent | 3b0544b26a22d90c1d4eba84ebb13c26c9669fd6 (diff) |
Fix term cursor (#9)
The current cursor highlight is difficult to find
-rw-r--r-- | colors/ayu.vim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/colors/ayu.vim b/colors/ayu.vim index 83002ba..021768f 100644 --- a/colors/ayu.vim +++ b/colors/ayu.vim @@ -195,6 +195,7 @@ exe "hi! CursorLineConceal" .s:fg_guide .s:bg_line .s:fmt_none " Terminal in NVIM " --------- if has("nvim") + exec "hi! TermCursor" .s:fg_bg .s:bg_fg let g:terminal_color_0 = s:palette.bg[s:style] let g:terminal_color_1 = s:palette.markup[s:style] let g:terminal_color_2 = s:palette.string[s:style] |