Yagua / nebulous.nvim

Minimalist Collection of Colorschemes for Neovim Written in Lua
MIT License
184 stars 11 forks source link

nb_style not working #10

Closed luissolanodev closed 3 years ago

luissolanodev commented 3 years ago

Hey bro! currently setting nb_style with lua option is taking no effect. This my set up:

Installed with packer.nvim: image

lua/plugins/nebulous.lua: image

all the other options work except for nb_style, however loading the colorscheme with vim.cmd("colorscheme nebulous") works

I may be doing something wrong with my config though, just wanted to know if anyone can reproduce this, thanks in advance!

Yagua commented 3 years ago

Hello buuddy, how are you? Recently an update was made in the setup function where apparently this bug was solved, I show you an example of use:

--Nebulous Settings
require("nebulous").setup {
  variant = "midnight",
  disable = {
    background = false,
  },
  italic = {
    comments   = true,
    keywords   = false,
    functions  = true,
    variables  = false,
  },
}

It would be good for you to take a look