dotfiles/nvim/lua/plugins/core.lua

28 lines
712 B
Lua
Raw Normal View History

2023-03-18 23:30:18 +00:00
return {
{ "ellisonleao/gruvbox.nvim" },
2023-07-27 02:56:48 +00:00
{ "NeogitOrg/neogit", dependencies = "nvim-lua/plenary.nvim", config = true },
2023-09-07 18:34:50 +00:00
{ "wakatime/vim-wakatime" },
2024-03-19 20:38:13 +00:00
{
"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,
},
2023-03-18 23:30:18 +00:00
{
"LazyVim/LazyVim",
opts = {
2023-07-27 02:56:48 +00:00
colorscheme = "gruvbox",
},
},
2023-03-18 23:30:18 +00:00
}