Looking for a Neovim theme

Hi !

I started using Neovim and I can’t find a theme that supports ReScript correctly.
Someone had recommandations ?

Thanks !

Maybe one of @aspeddro @shulhi @CarlOlson @FreddieGilbraith @dkirchhof knows.

You can use Rescript treesitter and use any themes that support treesitter. Personally, I use Gruvbox.

I’m using rose-pine/neovim (mostly the light, sometimes the dark one).
But I think most important is to use the rescript treesitter plugin (GitHub - rescript-lang/tree-sitter-rescript: ReScript parser for Tree-Sitter) so most themes would work.

I added tree-sitter but the syntax color seems pretty bad (trying gruvbox) :thinking:

Did I miss something ?

Thanks for your help btw :smile:

I really missed something !
I didn’t put the language in the ensure_installed options.

return {
  "nvim-treesitter/nvim-treesitter",
  opts = { ensure_installed = {
    "rescript",
    "gitignore",
  } },
}
3 Likes