KeitaNakamura / neodark.vim

A dark color scheme for vim
410 stars 34 forks source link

The terminal_transparent option doesn't seem to work for me. #12

Closed cm-s closed 6 years ago

cm-s commented 6 years ago

This is the contents of my .vimrc.

filetype plugin indent on
call plug#begin('~/.vim/vim-plugins')
Plug 'KeitaNakamura/neodark.vim'
Plug 'https://github.com/joshdick/onedark.vim'
call plug#end()

colorscheme neodark
let g:neodark#terminal_transparent = 1
let g:neodark#use_256color = 1

screenshot_20171027_220854

And this is my background when editing.

screenshot_20171027_221250

KeitaNakamura commented 6 years ago

Hi. Could you try to put those settings before colorscheme neodark?

let g:neodark#terminal_transparent = 1
let g:neodark#use_256color = 1
colorscheme neodark
cm-s commented 6 years ago

Very nice, it worked. :) Thanks, and great looking colorscheme!