1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-12-16 22:11:09 +01:00

plugins/cord: update settingsExample

This commit is contained in:
Gaetan Lepage 2025-12-13 11:24:11 +01:00 committed by Gaétan Lepage
parent 960ff28d96
commit 74136352cf

View file

@ -9,25 +9,16 @@ lib.nixvim.plugins.mkNeovimPlugin {
maintainers = [ lib.maintainers.eveeifyeve ]; maintainers = [ lib.maintainers.eveeifyeve ];
settingsExample = { settingsExample = {
usercmd = false;
display = { display = {
show_time = true; theme = "atom";
swap_fields = false; flavor = "accent";
swap_icons = false;
}; };
ide = { editor.tooltip = "Neovim";
enable = true; timestamp.reset_on_idle = true;
show_status = true; idle = {
timeout = 300000; enabled = true;
text = "Idle"; timeout = 900000;
tooltip = "💤";
};
text = {
viewing = "Viewing {}";
editing = "Editing {}";
file_browser = "Browsing files in {}";
vcs = "Committing changes in {}";
workspace = "In {}";
}; };
text.workspace = "";
}; };
} }