clean stuff

This commit is contained in:
Christian Nieves
2025-03-04 15:50:32 -06:00
parent d56eb258cd
commit 27f00e77e6
5 changed files with 3 additions and 8 deletions

View File

@ -20,7 +20,6 @@ return {
lazy = false, -- lazy loading handled internally
cond = flags.blink,
dependencies = {
"Exafunction/codeium.nvim",
"chrisgrieser/cmp-nerdfont",
"hrsh7th/cmp-nvim-lsp",
"mikavilpas/blink-ripgrep.nvim",

View File

@ -7,7 +7,6 @@ return {
event = { "InsertEnter", "CmdlineEnter" },
cond = not flags.blink,
dependencies = {
"Exafunction/codeium.nvim",
"FelipeLema/cmp-async-path",
"amarakon/nvim-cmp-buffer-lines",
"chrisgrieser/cmp-nerdfont",
@ -39,8 +38,6 @@ return {
if use_google() then
table.insert(conditionalSources, { name = "nvim_ciderlsp", priority = 8 })
table.insert(conditionalSources, { name = "buganizer", option = { notifications_enabled = true } })
else
table.insert(conditionalSources, { name = "codeium", priority = 8 })
end
local lspkind = require("lspkind")
@ -117,7 +114,6 @@ return {
async_path = " path",
buffer = " Buf",
cmdline = " cmd",
codeium = "󰚩 Codeium",
crates = " rust",
luasnip = " snip",
buganizer = " Buganizer",

View File

@ -25,7 +25,7 @@ end
function M.use_google()
if M.use_google_cache == nil then
M.use_google_cache = M.file_exists(os.getenv("HOME") .. "/use_google")
M.use_google_cache = M.file_exists(vim.env.HOME .. "/use_google")
end
return M.use_google_cache
end