mirror of
https://github.com/iofq/nvim.nix.git
synced 2026-01-23 00:45:17 -06:00
19 lines
444 B
Lua
19 lines
444 B
Lua
if vim.g.did_load_colors_plugin then
|
|
return
|
|
end
|
|
vim.g.did_load_colors_plugin = true
|
|
|
|
require("rose-pine").setup({
|
|
variant = "moon",
|
|
styles = {
|
|
bold = false,
|
|
italic = false,
|
|
transparency = true,
|
|
},
|
|
})
|
|
require('nightfox').setup({
|
|
options = {
|
|
transparent = true, -- Disable setting background
|
|
terminal_colors = false, -- Set terminal colors (vim.g.terminal_color_*) used in `:terminal`
|
|
},
|
|
})
|