This commit is contained in:
Christian Nieves
2024-12-14 08:10:44 -06:00
parent afbe9737b7
commit 1fe1ca6c71
5 changed files with 23 additions and 178 deletions

View File

@ -36,8 +36,8 @@ return {
["<C-e>"] = { "hide", "fallback" },
["<CR>"] = { "accept", "fallback" },
["<Tab>"] = { "snippet_forward", "fallback" },
["<S-Tab>"] = { "snippet_backward", "fallback" },
["<Tab>"] = { "select_next", "snippet_forward", "accept", "fallback" },
["<S-Tab>"] = { "select_prev", "snippet_backward", "fallback" },
["<Up>"] = { "select_prev", "fallback" },
["<Down>"] = { "select_next", "fallback" },
@ -46,18 +46,18 @@ return {
["<S-Down>"] = { "scroll_documentation_down", "fallback" },
},
sources = {
providers = function()
default = function(ctx)
local providerToEnable = {
"lsp",
"path",
"crates",
"snippets",
"buffer",
"ripgrep",
"emoji",
"nerdfont",
"buffer",
}
print("sources")
print(vim.inspect(providerToEnable))
if use_google() then
table.insert(providerToEnable, "nvim_ciderlsp")
table.insert(providerToEnable, "buganizer")

View File

@ -11,57 +11,19 @@ return {
vim.cmd("colorscheme moonfly")
end,
},
{
"sainnhe/sonokai",
-- cond = false,
config = function()
vim.g.sonokai_diagnostic_virtual_text = "highlighted"
vim.g.sonokai_style = "andromeda"
vim.g.sonokai_dim_inactive_windows = 1
-- vim.cmd("colorscheme sonokai")
end,
},
{
"nyoom-engineering/oxocarbon.nvim",
lazy = use_google(), -- make sure we load this during startup if it is your main colorscheme
priority = 1000, -- make sure to load this before all the other start plugins
cond = false,
config = function()
vim.cmd("colorscheme oxocarbon")
end,
},
{
"uloco/bluloco.nvim",
dependencies = { "rktjmp/lush.nvim" },
lazy = use_google(), -- make sure we load this during startup if it is your main colorscheme
priority = 1000, -- make sure to load this before all the other start plugins
cond = false,
config = function()
vim.cmd("colorscheme bluloco")
end,
},
{
"EdenEast/nightfox.nvim",
lazy = use_google(), -- make sure we load this during startup if it is your main colorscheme
priority = 1000, -- make sure to load this before all the other start plugins
cond = false,
config = function()
-- vim.cmd("colorscheme nightfox")
-- vim.cmd("colorscheme carbonfox")
-- vim.cmd("colorscheme terafox")
vim.cmd("colorscheme duskfox")
-- vim.cmd("colorscheme nordfox")
-- vim.cmd("colorscheme dayfox")
-- vim.cmd("colorscheme dawnfox")
end,
},
{
"rebelot/kanagawa.nvim",
lazy = use_google(), -- make sure we load this during startup if it is your main colorscheme
priority = 1000, -- make sure to load this before all the other start plugins
cond = false,
config = function()
vim.cmd("colorscheme kanagawa-wave")
end,
},
-- {
-- "EdenEast/nightfox.nvim",
-- lazy = use_google(), -- make sure we load this during startup if it is your main colorscheme
-- priority = 1000, -- make sure to load this before all the other start plugins
-- cond = not use_google(),
-- config = function()
-- -- vim.cmd("colorscheme nightfox")
-- -- vim.cmd("colorscheme carbonfox")
-- -- vim.cmd("colorscheme terafox")
-- vim.cmd("colorscheme duskfox")
-- -- vim.cmd("colorscheme nordfox")
-- -- vim.cmd("colorscheme dayfox")
-- -- vim.cmd("colorscheme dawnfox")
-- end,
-- },
}

View File

@ -1,7 +1,7 @@
local M = {
use_google_cache = nil,
flags = {
blink = false,
blink = true,
},
}