mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +02:00
38 lines
870 B
Nix
38 lines
870 B
Nix
{ lib, ... }:
|
|
lib.nixvim.plugins.mkNeovimPlugin {
|
|
name = "supermaven";
|
|
package = "supermaven-nvim";
|
|
moduleName = "supermaven-nvim";
|
|
packPathName = "supermaven-nvim";
|
|
|
|
maintainers = [ lib.maintainers.PoCo ];
|
|
|
|
dependencies = [ "curl" ];
|
|
|
|
# Register nvim-cmp association
|
|
imports = [
|
|
{ cmpSourcePlugins.supermaven = "supermaven"; }
|
|
];
|
|
|
|
settingsExample = lib.literalExpression ''
|
|
{
|
|
keymaps = {
|
|
accept_suggestion = "<Tab>";
|
|
clear_suggestions = "<C-]>";
|
|
accept_word = "<C-j>";
|
|
};
|
|
ignore_filetypes = [ "cpp" ];
|
|
color = {
|
|
suggestion_color = "#ffffff";
|
|
cterm = 244;
|
|
};
|
|
log_level = "info";
|
|
disable_inline_completion = false;
|
|
disable_keymaps = false;
|
|
condition = lib.nixvim.mkRaw '''
|
|
function()
|
|
return false
|
|
end
|
|
''';
|
|
}'';
|
|
}
|