add multiple colorscheme support

the "good" way
This commit is contained in:
Lucas Barbieri 2024-02-13 21:19:26 -03:00
parent f805c65a30
commit 68fa24fca5
2 changed files with 51 additions and 41 deletions

View File

@ -4,7 +4,7 @@ return {
dependencies = { 'nvim-tree/nvim-web-devicons', "water-sucks/darkrose.nvim" }, dependencies = { 'nvim-tree/nvim-web-devicons', "water-sucks/darkrose.nvim" },
config = function() config = function()
require("bufferline").setup({ require("bufferline").setup({
-- -- -- -- -- -- -- -- -- -- -- -- -- -- -- highlights = require("darkrose.integrations.bufferline").generate(), -- -- -- -- -- -- -- -- -- -- -- highlights = require("darkrose.integrations.bufferline").generate(),
options = { options = {
show_buffer_icons = false, show_buffer_icons = false,
} }

View File

@ -1,8 +1,19 @@
local solarized = true local home = os.getenv("HOME")
local laptop = os.getenv("LAPTOP")
local colorscheme = {} local colorscheme = {}
if laptop ~= "yes" and solarized then local open = io.open
local function read_file(path)
local file = open(path, "rb")
if not file then return nil end
local content = file:read "*l"
file:close()
return content
end
local fileContent = read_file(string.format("%s/colorscheme", home));
if fileContent == "white" then
colorscheme = { colorscheme = {
'maxmx03/solarized.nvim', 'maxmx03/solarized.nvim',
lazy = false, lazy = false,
@ -20,7 +31,42 @@ if laptop ~= "yes" and solarized then
vim.cmd [[highlight ColorColumn ctermbg=235 guibg=#435156]] vim.cmd [[highlight ColorColumn ctermbg=235 guibg=#435156]]
end, end,
} }
elseif laptop == "yes" then elseif fileContent == "red" then
colorscheme = {
"water-sucks/darkrose.nvim",
lazy = false,
dependencies = { "tjdevries/colorbuddy.vim" },
priority = 1000,
config = function()
vim.opt.termguicolors = true
vim.cmd.colorscheme("darkrose")
vim.cmd [[highlight ColorColumn ctermbg=235 guibg=#262626]]
local Color, colors, Group, groups, styles = require('colorbuddy').setup()
Color.new("red", "#9E4244")
Color.new("dark_red", "#6D0011")
Color.new("light_red", "#F85149")
Color.new("orange", "#A26B35")
Color.new("light_orange", "#F0883E")
Color.new("dark_purple", "#281C2B")
Color.new("magenta", "#8B2950")
Color.new("dark_pink", "#B76E79")
Color.new("pink", "#FF7979")
Color.new("light_pink", "#F6ACA7")
Color.new("gray", "#8B8B8B")
Color.new("bg", "#000000")
Color.new("bg_float", "#101010")
Color.new("bg_float_bright", "#121212")
Color.new("fg", "#C9C1C9")
Color.new("fg_gutter", "#8A95A2")
Color.new("fg_dark", "#4D5566")
Group.new("@neorg.links.file", colors.magenta, colors.none, styles.bold)
Group.new("@comment", colors.gray, colors.none, styles.italic)
end
}
else
colorscheme = { colorscheme = {
"bluz71/vim-moonfly-colors", "bluz71/vim-moonfly-colors",
name = "moonfly", name = "moonfly",
@ -73,42 +119,6 @@ elseif laptop == "yes" then
Group.link("@lsp.type.comment", groups.Comment) Group.link("@lsp.type.comment", groups.Comment)
Group.link("Repeat", groups.Macro) Group.link("Repeat", groups.Macro)
end end
}
else
colorscheme = {
"water-sucks/darkrose.nvim",
lazy = false,
dependencies = { "tjdevries/colorbuddy.vim" },
priority = 1000,
config = function()
vim.opt.termguicolors = true
vim.cmd.colorscheme("darkrose")
vim.cmd [[highlight ColorColumn ctermbg=235 guibg=#262626]]
local Color, colors, Group, groups, styles = require('colorbuddy').setup()
Color.new("red", "#9E4244")
Color.new("dark_red", "#6D0011")
Color.new("light_red", "#F85149")
Color.new("orange", "#A26B35")
Color.new("light_orange", "#F0883E")
Color.new("dark_purple", "#281C2B")
Color.new("magenta", "#8B2950")
Color.new("dark_pink", "#B76E79")
Color.new("pink", "#FF7979")
Color.new("light_pink", "#F6ACA7")
Color.new("gray", "#8B8B8B")
Color.new("bg", "#000000")
Color.new("bg_float", "#101010")
Color.new("bg_float_bright", "#121212")
Color.new("fg", "#C9C1C9")
Color.new("fg_gutter", "#8A95A2")
Color.new("fg_dark", "#4D5566")
Group.new("@neorg.links.file", colors.magenta, colors.none, styles.bold)
Group.new("@comment", colors.gray, colors.none, styles.italic)
end
} }
end end