Yagua / nebulous.nvim

Minimalist Collection of Colorschemes for Neovim Written in Lua

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Nebulous Lazy.nvim setup?

dedguy21 opened this issue · comments

I'm just curious how one would translate the nebulous setup (currently looks like it's written with packer in mind) over to a lazy.nvim as a package manager?

Great plugin btw, my favorite color scheme period.

Never mind. I found the answer, it was 'opts"

'Yagua/nebulous.nvim',
opts = {
  variant = "midnight",
  disable = {
    background = true,
    endOfBuffer = false,
    terminal_colors = false,
  },
  italic = {
    comments   = false,
    keywords   = true,
    functions  = false,
    variables  = true,
  },
  custom_colors = { -- this table can hold any group of colors with their respective values
    LineNr = { fg = "#5BBBDA", bg = "NONE", style = "NONE" },
    CursorLineNr = { fg = "#E1CD6C", bg = "NONE", style = "NONE" },

    -- it is possible to specify only the element to be changed
    TelescopePreviewBorder = { fg = "#A13413" },
    LspDiagnosticsDefaultError = { bg = "#E11313" },
    TSTagDelimiter = { style = "bold,italic" },
  }
},

},

{ -- Set lualine as statusline
'nvim-lualine/lualine.nvim',
-- See :help lualine.txt
opts = {
options = {
icons_enabled = true,
theme = 'auto',
component_separators = '|',
section_separators = '',
},
},
},