1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-12-05 00:21:06 +01:00

colorschemes/one: migrate to by-name

This commit is contained in:
Heitor Augusto 2025-11-02 19:46:47 -03:00 committed by Gaétan Lepage
parent dd4d89a556
commit 56a97addab
3 changed files with 0 additions and 1 deletions

View file

@ -1,26 +0,0 @@
{
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;
};
}