nix-community.nixvim/tests/test-sources/plugins/by-name/nvim-ufo/default.nix

94 lines
2.7 KiB
Nix
Raw Normal View History

2023-06-25 12:32:54 +03:30
{
empty = {
plugins.nvim-ufo.enable = true;
};
example = {
plugins.nvim-ufo = {
enable = true;
settings = {
provider_selector = # Lua
''
function(bufnr, filetype, buftype)
local ftMap = {
vim = "indent",
python = {"indent"},
git = ""
}
2023-06-25 12:32:54 +03:30
return ftMap[filetype]
end
'';
2023-06-25 12:32:54 +03:30
fold_virt_text_handler = # Lua
''
function(virtText, lnum, endLnum, width, truncate)
local newVirtText = {}
local suffix = (' %d '):format(endLnum - lnum)
local sufWidth = vim.fn.strdisplaywidth(suffix)
local targetWidth = width - sufWidth
local curWidth = 0
for _, chunk in ipairs(virtText) do
local chunkText = chunk[1]
local chunkWidth = vim.fn.strdisplaywidth(chunkText)
if targetWidth > curWidth + chunkWidth then
table.insert(newVirtText, chunk)
else
chunkText = truncate(chunkText, targetWidth - curWidth)
local hlGroup = chunk[2]
table.insert(newVirtText, {chunkText, hlGroup})
chunkWidth = vim.fn.strdisplaywidth(chunkText)
-- str width returned from truncate() may less than 2nd argument, need padding
if curWidth + chunkWidth < targetWidth then
suffix = suffix .. (' '):rep(targetWidth - curWidth - chunkWidth)
end
break
end
curWidth = curWidth + chunkWidth
2023-06-25 12:32:54 +03:30
end
table.insert(newVirtText, {suffix, 'MoreMsg'})
return newVirtText
2023-06-25 12:32:54 +03:30
end
'';
};
2023-06-25 12:32:54 +03:30
};
2023-06-25 12:32:54 +03:30
};
defaults = {
plugins.nvim-ufo = {
enable = true;
settings = {
open_fold_hl_timeout = 400;
provider_selector = null;
close_fold_kinds_for_ft = {
default = { };
};
fold_virt_text_handler = null;
enable_get_fold_virt_text = false;
preview = {
win_config = {
border = "rounded";
winblend = 12;
winhighlight = "Normal:Normal";
maxheight = 20;
};
mappings = {
scrollB = "";
scrollF = "";
scrollU = "";
scrollD = "";
scrollE = "<C-E>";
scrollY = "<C-Y>";
jumpTop = "";
jumpBot = "";
close = "q";
switch = "<Tab>";
trace = "<CR>";
};
2023-06-25 12:32:54 +03:30
};
};
};
};
}