Files
DCGOS/home/nixvim/plugins/util/mini.nix
2025-09-21 15:54:31 +08:00

29 lines
586 B
Nix

{
plugins = {
mini = {
enable = true;
modules = {
comment = {
options = {
customCommentString = ''
<cmd>lua require("ts_context_commentstring.internal").calculate_commentstring() or vim.bo.commentstring<cr>
'';
};
};
# Highlight word under cursor
cursorword = {
delay = 0;
};
# Show indent lines
indentscope = {
symbol = "";
draw.delay = 0;
};
};
};
ts-context-commentstring.enable = true;
};
}