mirror of
https://github.com/nix-community/nixvim.git
synced 2025-08-01 16:45:07 +02:00
plugins/tailwind-tools: init
This commit is contained in:
parent
67bbdf9318
commit
b7f783a8dc
2 changed files with 174 additions and 0 deletions
|
@ -0,0 +1,61 @@
|
|||
{
|
||||
empty = {
|
||||
plugins.tailwind-tools.enable = true;
|
||||
};
|
||||
|
||||
defaults = {
|
||||
plugins.tailwind-tools = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
server = {
|
||||
override = true;
|
||||
settings = { };
|
||||
on_attach.__raw = "function(client, bufnr) end";
|
||||
};
|
||||
document_color = {
|
||||
enabled = true;
|
||||
kind = "inline";
|
||||
inline_symbol = " ";
|
||||
debounce = 200;
|
||||
};
|
||||
conceal = {
|
||||
enabled = false;
|
||||
min_length = null;
|
||||
symbol = "";
|
||||
highlight = {
|
||||
fg = "#38BDF8";
|
||||
};
|
||||
};
|
||||
cmp = {
|
||||
highlight = "foreground";
|
||||
};
|
||||
telescope = {
|
||||
utilities = {
|
||||
callback.__raw = "function(name, class) end";
|
||||
};
|
||||
};
|
||||
extension = {
|
||||
queries = [ ];
|
||||
patterns = { };
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
example = {
|
||||
plugins.tailwind-tools = {
|
||||
enable = true;
|
||||
|
||||
settings = {
|
||||
document_color = {
|
||||
conceal = {
|
||||
enabled = true;
|
||||
symbol = "…";
|
||||
};
|
||||
document_color.kind = "background";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue