Luo Chen
Luo Chen
Could you please read the README/Troubleshooting part and try to solve it?
@Nader-gator will the branch `fix-js-dft` be helpful?
Could you please follow this [doc](https://github.com/luochen1990/rainbow#troubleshooting) to try to solve this confliction?
I want to merge this, but there is mixed indent in this PR... Maybe [this indent detect plugin](https://github.com/luochen1990/indent-detector.vim) will help
Yes, I can reproduce this issue. I find that it is because this syntax rule of yaml: ``` execute 'syn match yamlPlainScalar /'.s:ns_plain_out.'/' execute 'syn match yamlPlainScalar contained /'.s:ns_plain_in.'/' ```...
In fact, I did a lot of work to make the first level of text highlighted ... Maybe this should be provided as an option... Hoping for some Pull Request...
If you just don't like the default color, you can config it yourself.
Add the following to your vimrc, see readme.md for more details. ``` let g:rainbow_conf = { \ 'guifgs': ['white', 'darkorange3', 'seagreen3', 'firebrick'], \ 'ctermfgs': ['white', 'lightyellow', 'lightcyan', 'lightmagenta'], \} ```
A new option `"default"` is added now.
Maybe this is helpful: https://github.com/luochen1990/rainbow/issues/93