Skip to content

Commit

Permalink
completion
Browse files Browse the repository at this point in the history
  • Loading branch information
wardnath committed Aug 23, 2024
1 parent d5274c2 commit 6377642
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions chezmoi/dot_config/nvim/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,25 @@ vim.g.maplocalleader = "\\" -- Same for `maplocalleader`
require('lazy').setup({
{'neovim/nvim-lspconfig'},
{'ms-jpq/coq_nvim', branch = 'coq'},
{'github/copilot.vim'},
{ "catppuccin/nvim", name = "catppuccin", priority = 1000 },

{
'huggingface/llm.nvim',
opts = {

{
model = "tinyllama:latest",
url = "http://localhost:11434", -- llm-ls uses "/api/generate"
-- cf https://github.com/ollama/ollama/blob/main/docs/api.md#parameters
request_body = {
-- Modelfile options for the model you use
options = {
temperature = 0.2,
top_p = 0.95,
}
}
},

{ "catppuccin/nvim", name = "catppuccin", priority = 1000 },
{
"folke/which-key.nvim",
event = "VeryLazy",
Expand Down

0 comments on commit 6377642

Please sign in to comment.