mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
plugins/cord: init
This commit is contained in:
parent
754b8df7e3
commit
8ffda5afb1
2 changed files with 163 additions and 0 deletions
33
plugins/by-name/cord/default.nix
Normal file
33
plugins/by-name/cord/default.nix
Normal file
|
@ -0,0 +1,33 @@
|
|||
{
|
||||
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 {}";
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue