Skip to content

Commit

Permalink
Use Neovim 0.1.4-acc5d08b new true-color setting
Browse files Browse the repository at this point in the history
  • Loading branch information
rafi committed Jun 10, 2016
1 parent d9fe961 commit c5dec07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autoload/choosewin/hlmanager.vim
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ unlet! s:define_type_checker


let s:SCREEN = (has('gui_running') let s:SCREEN = (has('gui_running')
\ || (has('termtruecolor') && &guicolors == 1) \ || (has('termtruecolor') && &guicolors == 1)
\ || (has('nvim') && $NVIM_TUI_ENABLE_TRUE_COLOR == 1)) \ || (has('nvim') && has('termguicolors') && &termguicolors == 1))
\ ? 'gui' : 'cterm' \ ? 'gui' : 'cterm'


" Main: " Main:
Expand Down

0 comments on commit c5dec07

Please sign in to comment.