nvim: tabnine...

This commit is contained in:
Roman Godmaire 2024-03-19 16:38:13 -04:00
parent df0d861b69
commit 01bce1024e

View file

@ -2,6 +2,22 @@ return {
{ "ellisonleao/gruvbox.nvim" },
{ "NeogitOrg/neogit", dependencies = "nvim-lua/plenary.nvim", config = true },
{ "wakatime/vim-wakatime" },
{
"codota/tabnine-nvim",
build = "./dl_binaries.sh",
opts = {
disable_auto_comment = true,
accept_keymap = "<C-y>",
dismiss_keymap = "<C-]>",
debounce_ms = 800,
suggestion_color = { gui = "#808080", cterm = 244 },
exclude_filetypes = { "TelescopePrompt", "NvimTree" },
log_file_path = nil, -- absolute path to Tabnine log file
},
config = function(_, opts)
require("tabnine").setup(opts)
end,
},
{
"LazyVim/LazyVim",
opts = {