rakr / vim-one

Adaptation of one-light and one-dark colorschemes for Vim
MIT License
1.99k stars 196 forks source link

Syntax Colors Don't Display #92

Closed joshloftis closed 5 years ago

joshloftis commented 5 years ago

I might have a config wrong somewhere. When using vim-one colorscheme the syntax highlighting doesn't seem to work on any file type. For example, Javascript and Elixir below:

screen shot 2019-02-18 at 12 53 45 pm screen shot 2019-02-18 at 12 53 59 pm

vim.rc:

set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'rakr/vim-one'
call vundle#end()
filetype plugin indent on

set termguicolors
colorscheme one
syntax on
set background=dark
colorscheme one

Using Vim version 8.1 with macVim on macOS Mojave. Loading vim in iterm2 also looks the same as the pictures above - the syntax doesn't color correctly. Checked my $TERM and it is xterm-256color

joshloftis commented 5 years ago

Realized I was missing language specific plugins.

marroquinsamy commented 4 years ago

Hi, I have the same issue with JavaScript. I have the coc-eslint installed. How did you solve it? Thanks for your time.