mirror of
https://github.com/nix-community/nixvim.git
synced 2025-08-28 05:54:13 +02:00
plugins/colorful-winsep: init
Signed-off-by: saygo-png <saygo.mail@proton.me>
This commit is contained in:
parent
d6b9cce8bd
commit
14849765d4
2 changed files with 121 additions and 0 deletions
31
plugins/by-name/colorful-winsep/default.nix
Normal file
31
plugins/by-name/colorful-winsep/default.nix
Normal file
|
@ -0,0 +1,31 @@
|
|||
{ lib, ... }:
|
||||
lib.nixvim.plugins.mkNeovimPlugin {
|
||||
name = "colorful-winsep";
|
||||
packPathName = "colorful-winsep.nvim";
|
||||
package = "colorful-winsep-nvim";
|
||||
|
||||
maintainers = [ lib.maintainers.saygo-png ];
|
||||
|
||||
settingsExample = {
|
||||
hi = {
|
||||
bg = "#7d8618";
|
||||
fg = "#b8bb26";
|
||||
};
|
||||
only_line_seq = true;
|
||||
no_exec_files = [
|
||||
"packer"
|
||||
"TelescopePrompt"
|
||||
"mason"
|
||||
"CompetiTest"
|
||||
"NvimTree"
|
||||
];
|
||||
symbols = [
|
||||
"━"
|
||||
"┃"
|
||||
"┏"
|
||||
"┓"
|
||||
"┗"
|
||||
"┛"
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue