mirror of
https://github.com/nix-community/nixvim.git
synced 2025-07-30 23:55:15 +02:00
plugins/twilight: init
This commit is contained in:
parent
5004178c0c
commit
57d1062c04
3 changed files with 114 additions and 0 deletions
32
tests/test-sources/plugins/ui/twilight.nix
Normal file
32
tests/test-sources/plugins/ui/twilight.nix
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
empty = {
|
||||
plugins.twilight.enable = true;
|
||||
};
|
||||
|
||||
defaults = {
|
||||
plugins = {
|
||||
treesitter.enable = true;
|
||||
twilight = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
dimming = {
|
||||
alpha = 0.25;
|
||||
color = ["Normal" "#ffffff"];
|
||||
term_bg = "#000000";
|
||||
inactive = false;
|
||||
};
|
||||
context = 10;
|
||||
treesitter = true;
|
||||
expand = [
|
||||
"function"
|
||||
"method"
|
||||
"table"
|
||||
"if_statement"
|
||||
];
|
||||
exclude = [];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue