How to override the colors of NeoSolarized in NeoVim

This page summarizes the projects mentioned and recommended in the original post on dev.to

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  • onedarkpro.nvim

    🎨 Atom's iconic One Dark theme. Cacheable, fully customisable, Tree-sitter and LSP semantic token support. Comes with variants

  • Recently, I’d like to alter a theme with a new one in NeoVim. The onedarkpro is a fantastic theme that I’ve used for a long time, but it’s difficult to defeat the temptation to try out another theme like NeoSolarized.

  • NeoSolarized.nvim

    NeoSolarized colorscheme for NeoVim with full transparency

  • return { { "Tsuzat/NeoSolarized.nvim", config = function() -- https://github.com/Tsuzat/NeoSolarized.nvim/blob/208e65a3ede945b8a1d00104a4441217c5e23509/lua/NeoSolarized/theme.lua#L1-L11 local neosolarized = require('NeoSolarized') local cls = require("NeoSolarized.colors") local config = require("NeoSolarized.config") local options = config.options local theme = {config = options, colors = cls.setup()} local c = theme.colors c.green = '#40f7d2' c.yellow = '#eaea8a' c.red = '#ea4481' c.blue = '#2bb3d8' c.fg0 = '#dde8d5' c.orange = '#dd9f4d' neosolarized.setup { transparent = true, -- https://github.com/Tsuzat/NeoSolarized.nvim/blob/208e65a3ede945b8a1d00104a4441217c5e23509/lua/NeoSolarized/theme.lua#L748 styles = { comments = {italic = false}, keywords = {italic = false, bold = true}, string = {italic = false} }, on_highlights = function(highlights, colors) -- highlights.Include.fg = colors.red -- Using `red` foreground for Includes end } end } }

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
  • lazy.nvim

    💤 A modern plugin manager for Neovim

  • First, I installed NeoSolarized.nvim via lazy.nvim, so the code would be simple like the following one.

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • legendary.nvim now supports grouping items into submenus!

    5 projects | /r/neovim | 4 Dec 2022
  • Comment.nvim: new stuff that will make you Rick Roll.

    5 projects | /r/neovim | 16 Oct 2021
  • Neovim plugin management inspired by Cargo

    1 project | news.ycombinator.com | 24 Mar 2024
  • Neovim: creating keymaps in lua

    4 projects | dev.to | 11 Mar 2024
  • Code action previews with `fzf-lua`!

    3 projects | /r/neovim | 10 Dec 2023