mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
plugins/colorful-menu: init
This commit is contained in:
parent
380435c555
commit
90c3f2468e
2 changed files with 139 additions and 0 deletions
41
plugins/by-name/colorful-menu/default.nix
Normal file
41
plugins/by-name/colorful-menu/default.nix
Normal file
|
@ -0,0 +1,41 @@
|
|||
{ lib, ... }:
|
||||
lib.nixvim.plugins.mkNeovimPlugin {
|
||||
name = "colorful-menu";
|
||||
packPathName = "colorful-menu.nvim";
|
||||
package = "colorful-menu-nvim";
|
||||
|
||||
description = ''
|
||||
To use this in `nvim-cmp` for example,
|
||||
```nix
|
||||
plugins.cmp.settings.formatting.format.__raw = \'\'
|
||||
function(entry, vim_item)
|
||||
local highlights_info = require("colorful-menu").cmp_highlights(entry)
|
||||
|
||||
-- highlight_info is nil means we are missing the ts parser, it's
|
||||
-- better to fallback to use default `vim_item.abbr`. What this plugin
|
||||
-- offers is two fields: `vim_item.abbr_hl_group` and `vim_item.abbr`.
|
||||
if highlights_info ~= nil then
|
||||
vim_item.abbr_hl_group = highlights_info.highlights
|
||||
vim_item.abbr = highlights_info.text
|
||||
end
|
||||
|
||||
return vim_item
|
||||
end
|
||||
\'\';
|
||||
```
|
||||
|
||||
Learn more in the [README](https://github.com/xzbdmw/colorful-menu.nvim).
|
||||
'';
|
||||
|
||||
maintainers = [ lib.maintainers.GaetanLepage ];
|
||||
|
||||
settingsExample = {
|
||||
ls = {
|
||||
lua_ls.arguments_hl = "@comment";
|
||||
pyright.extra_info_hl = "@comment";
|
||||
fallback = true;
|
||||
};
|
||||
fallback_highlight = "@variable";
|
||||
max_width = 60;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue