Simplifying neovim config. Just lazy default plugin file, catpuccin, and oil.

This commit is contained in:
Shaun Setlock
2026-01-02 19:12:55 -05:00
parent e76ea35421
commit eed0eba26d
5 changed files with 0 additions and 2 deletions

View File

@@ -0,0 +1,22 @@
return {
"saghen/blink.cmp",
-- Make blink.cmp toogleable
opts = function(_, opts)
vim.b.completion = false
Snacks.toggle({
name = "Completion",
get = function()
return vim.b.completion
end,
set = function(state)
vim.b.completion = state
end,
}):map("<leader>uk")
opts.enabled = function()
return vim.b.completion ~= false
end
return opts
end,
}