nix-community.nixvim/plugins/by-name/windsurf-nvim/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
914 B
Nix
Raw Normal View History

2024-01-01 21:50:06 +01:00
{
lib,
...
}:
2024-12-22 09:58:27 +00:00
lib.nixvim.plugins.mkNeovimPlugin {
name = "windsurf-nvim";
packPathName = "windsurf.nvim";
moduleName = "codeium";
maintainers = with lib.maintainers; [
GaetanLepage
khaneliman
];
2025-04-11 15:44:57 +02:00
description = ''
2025-06-18 02:42:47 +03:00
A native neovim extension for Codeium.
---
2025-04-11 15:44:57 +02:00
By default, enabling this plugin will also install the `curl`, `gzip`, `coreutils`, `util-linux` and `codeium` packages (via the `dependencies.*.enable` options`).
You are free to configure `dependencies.*.enable` and `dependencies.*.package` to disable or customize this behavior, respectively.
'';
dependencies = [
"curl"
"gzip"
"coreutils"
"util-linux"
"codeium"
];
imports = [
# Register nvim-cmp association
{ cmpSourcePlugins.codeium = "windsurf-nvim"; }
] ++ (import ./deprecations.nix { inherit lib; }).imports;
2025-04-11 15:44:57 +02:00
settingsExample = {
enable_chat = true;
};
2024-01-01 21:50:06 +01:00
}