summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEkaitz Zárraga <ekaitz.zarraga@gmail.com>2016-10-25 20:31:56 +0200
committerEkaitz Zárraga <ekaitz.zarraga@gmail.com>2016-10-25 20:31:56 +0200
commitbeed5d88d61784ab0198e3ea41153f02dd02c291 (patch)
tree65c4d1fe5a9f386cdd5ae2305036905765d8b8ca
parent2c50e6e1c447d68fd2fcfbaea4085dcc71b112b6 (diff)
[NeoVim] True color terminal and cursor shape
-rw-r--r--nvim/nvim/init.vim5
1 files changed, 4 insertions, 1 deletions
diff --git a/nvim/nvim/init.vim b/nvim/nvim/init.vim
index 40eb36b..d692d0f 100644
--- a/nvim/nvim/init.vim
+++ b/nvim/nvim/init.vim
@@ -26,6 +26,9 @@ syntax on
" Enable TRUE COLORS
let $NVIM_TUI_ENABLE_TRUE_COLOR=1
+let $NVIM_TUI_ENABLE_CURSOR_SHAPE=1
+set termguicolors
+set background=dark
" Set default colorscheme but dark comments -> Torte
colorscheme torte
@@ -87,7 +90,7 @@ set formatoptions=tcqj
" Highlight where the lines are more than 80 characters wide
set colorcolumn=80
-highlight ColorColumn ctermbg=DarkGrey
+highlight ColorColumn ctermbg=DarkGrey guibg=#262626
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""