mhartington / oceanic-next

Oceanic Next theme for neovim
Other
1.14k stars 141 forks source link

Installation for vim 7 / vim 8 not accurate on Google Cloud Shell #76

Closed ghost closed 5 years ago

ghost commented 5 years ago

Problems summary

I needed to use the instruction for vim 7 even tough vim 8 is installed.

Expected

Use vim 8 instruction with vim 8 installed.

Environment Information

Provide a minimal vim rc with less than 50 lines (Required!)

" Loading Plugin
call plug#begin('~/.vim/plugged')
Plug ('mhartington/oceanic-next')
call plug#end()

" Theme
syntax enable
set t_Co=256
colorscheme OceanicNext

The reproduce ways from neovim starting

  1. Go to https://console.cloud.google.com (You need a Google Account for that - it's free)
  2. Put config above into .vimrc
  3. Start vim .vimrc (for example)

Screen shot (if possible)

Looked like this (black and white) with the vim 8 installation instructions.

ksfya

And looks like this without any additional colorscheme / theme (like default on Google Cloud Shell):

4lht8

With the vim 7 installation instructions looks finally like it should:

screenshot 2018-12-10 at 18 38 02

Possible Solution

I am not sure if a simple mention in the README.md is enough.

Credits to Christian Brabandt who gave me the right hint on StackExchange.

mhartington commented 5 years ago

Probably an issue with it being an early version of vim 8 or just that terminal emulator being used does not fully support true colors. If you want to send a PR, that would be great, but I think this is a very specific/niche type of issue.

ghost commented 5 years ago

See #77