Yagua / nebulous.nvim

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

Nebulous Lazy.nvim setup? #18

Closed dedguy21 closed 1 year ago

dedguy21 commented 1 year ago

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.

dedguy21 commented 1 year ago

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 = '', }, }, },