mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-01 19:11:15 +00:00
29 lines
590 B
Nix
29 lines
590 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
lib,
|
|
...
|
|
}:
|
|
with lib;
|
|
with builtins; let
|
|
cfg = config.vim.assistant.tabnine;
|
|
in {
|
|
options.vim.assistant.tabnine = {
|
|
enable = mkEnableOption "Enable TabNine assistant";
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
vim.startPlugins = ["tabnine-nvim"];
|
|
|
|
vim.luaConfigRC.tabnine-nvim = nvim.dag.entryAnywhere ''
|
|
require('tabnine').setup({
|
|
disable_auto_comment=true,
|
|
accept_keymap="<Tab>",
|
|
dismiss_keymap = "<C-]>",
|
|
debounce_ms = 800,
|
|
execlude_filetypes = {"TelescopePrompt", "NvimTree", "alpha"}
|
|
})
|
|
'';
|
|
};
|
|
}
|