dotfiles/nvim/lua/plugins/gruvbox.lua

92 lines
2 KiB
Lua
Raw Normal View History

2026-03-01 15:37:12 +00:00
-- return {
-- "xiantang/darcula-dark.nvim",
-- config = function()
-- vim.cmd("colorscheme darcula-dark")
-- end,
-- }
2025-04-06 15:37:42 +01:00
-- return {
-- "https://github.com/ellisonleao/gruvbox.nvim",
-- lazy = false,
-- priority = 1000,
-- config = function()
-- require("gruvbox").setup({
2026-03-01 15:37:12 +00:00
-- invert_tabline = false,
-- invert_selection = false,
2025-04-06 15:37:42 +01:00
-- terminal_colors = true, -- add neovim terminal colors
-- undercurl = true,
-- underline = true,
2026-03-01 15:37:12 +00:00
-- bold = false,
2025-04-06 15:37:42 +01:00
-- italic = {
2026-03-01 15:37:12 +00:00
-- comments = false,
-- emphasis = true,
-- strings = false,
-- operators = false,
2025-04-06 15:37:42 +01:00
-- folds = false,
-- },
-- })
-- vim.cmd.colorscheme("gruvbox")
-- end,
-- }
2026-03-01 15:37:12 +00:00
return {
2026-03-23 19:21:12 +00:00
"maxmx03/solarized.nvim",
lazy = false,
priority = 1000,
---@type solarized.config
opts = {},
config = function(_, opts)
vim.o.termguicolors = true
vim.o.background = "dark"
require("solarized").setup(opts)
vim.cmd.colorscheme("solarized")
2026-03-01 15:37:12 +00:00
end,
}
2026-03-23 19:21:12 +00:00
-- return {
-- "Tsuzat/NeoSolarized.nvim",
-- lazy = false, -- make sure we load this during startup if it is your main colorscheme
-- priority = 1000, -- make sure to load this before all the other start plugins
-- config = function()
-- require("NeoSolarized").setup({
-- transparent = false,
-- enable_italics = false,
-- styles = {
-- string = { italic = false },
-- },
-- })
-- vim.cmd([[ colorscheme NeoSolarized ]])
-- end,
-- }
2025-04-06 15:37:42 +01:00
-- return {
-- "f4z3r/gruvbox-material.nvim",
-- name = "gruvbox-material",
-- lazy = false,
-- priority = 1000,
-- opts = {},
-- }
2026-03-01 15:37:12 +00:00
-- return {
-- "gmr458/vscode_modern_theme.nvim",
-- lazy = false,
-- priority = 1000,
-- config = function()
-- require("vscode_modern").setup({
-- cursorline = true,
-- transparent_background = false,
-- nvim_tree_darker = true,
-- })
-- vim.cmd.colorscheme("vscode_modern")
-- end,
-- }
-- return {
-- "olimorris/onedarkpro.nvim",
-- priority = 1000, -- Ensure it loads first
-- config = function()
-- vim.cmd("colorscheme onedark")
-- end,
-- }
--