1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-17 16:02:48 +01:00
nixvim/colorschemes/one/default.nix
2025-11-09 12:29:06 +00:00

26 lines
486 B
Nix

{
lib,
...
}:
lib.nixvim.plugins.mkVimPlugin {
name = "one";
isColorscheme = true;
package = "vim-one";
globalPrefix = "one_";
maintainers = [ lib.maintainers.GaetanLepage ];
settingsOptions = {
allow_italics = lib.nixvim.defaultNullOpts.mkFlagInt 0 ''
Whether to enable _italic_ (as long as your terminal supports it).
'';
};
settingsExample = {
allow_italics = true;
};
extraConfig = {
opts.termguicolors = lib.mkDefault true;
};
}