kristijanhusak / neovim-config

Neovim configuration
254 stars 39 forks source link

Colors in vim #6

Closed EJIqpEP closed 5 years ago

EJIqpEP commented 5 years ago

Hi Kristijan. You nvim config is really awesome and I used parts of it a lot. But I have one question. It's not clear for me how something like this is working

hi StatusLine guifg=#ebdbb2 guibg=#504945 gui=NONE

I assume you are using iterm + nvim where this gui hex colors are not working at all. Am I wrong?

kristijanhusak commented 5 years ago

If you are using neovim, adding set termguicolors to your init.vim should make it work.

Edit: If you are using Vim, something like this should work:

https://github.com/vim/vim/issues/993#issuecomment-241675433

EJIqpEP commented 5 years ago

You are my hero! Thanks a lot for clarification