mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-20 16:15:43 +02:00
33 lines
652 B
Nix
33 lines
652 B
Nix
{
|
|
lib,
|
|
...
|
|
}:
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "cord";
|
|
packPathName = "cord.nvim";
|
|
package = "cord-nvim";
|
|
maintainers = [ lib.maintainers.eveeifyeve ];
|
|
|
|
settingsExample = {
|
|
usercmd = false;
|
|
display = {
|
|
show_time = true;
|
|
swap_fields = false;
|
|
swap_icons = false;
|
|
};
|
|
ide = {
|
|
enable = true;
|
|
show_status = true;
|
|
timeout = 300000;
|
|
text = "Idle";
|
|
tooltip = "💤";
|
|
};
|
|
text = {
|
|
viewing = "Viewing {}";
|
|
editing = "Editing {}";
|
|
file_browser = "Browsing files in {}";
|
|
vcs = "Committing changes in {}";
|
|
workspace = "In {}";
|
|
};
|
|
};
|
|
}
|