improvements, installed ollama gen

This commit is contained in:
RingOfStorms (Joshua Bell) 2023-12-06 16:09:17 -06:00
parent f2f93acdb8
commit 6b2b0c377a
11 changed files with 151 additions and 161 deletions

View file

@ -184,7 +184,7 @@ return {
build = ":MasonUpdate",
opts = {},
},
{ "folke/neodev.nvim", opts = {} }, -- lua stuff
{ "folke/neodev.nvim", opts = {} }, -- lua stuff
{
"williamboman/mason-lspconfig.nvim",
},
@ -264,6 +264,7 @@ return {
["<esc>"] = cmp.mapping(function(fallback)
if cmp.visible() then
cmp.abort()
fallback()
else
fallback()
end
@ -286,11 +287,11 @@ return {
-- TODO I am getting lag sometimes I think this may be the cause, limiting to 100 for a while to see what happens
{ name = "nvim_lsp", priority = 8, max_item_count = 100 },
-- This source integrates with LuaSnip, a snippet engine for Neovim. It suggests snippets that you can insert into your code
{ name = "luasnip", priority = 7 },
{ name = "luasnip", priority = 7 },
-- This source provides file path completions, helping you to complete file paths in your code
{ name = "path", priority = 7 },
{ name = "path", priority = 7 },
-- This source provides completion items from the current buffer, meaning it suggests words that have already been typed in the same file.
{ name = "buffer", priority = 6 },
{ name = "buffer", priority = 6 },
-- Rust crates.io integration
{ name = "crates" },
},