From 8a2cf44a6617f6d566630d3f3489bcfc50541bfb Mon Sep 17 00:00:00 2001 From: Anthony Cicchetti Date: Thu, 13 Jun 2024 18:46:04 -0400 Subject: [PATCH] ollama in zed! and httpstat --- nix/home-manager/modules/packages/default.nix | 1 + zed/settings.json | 13 +++++++------ 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/nix/home-manager/modules/packages/default.nix b/nix/home-manager/modules/packages/default.nix index 7c6201e..dc7d3d9 100644 --- a/nix/home-manager/modules/packages/default.nix +++ b/nix/home-manager/modules/packages/default.nix @@ -39,6 +39,7 @@ in { gnused gnutar gql + httpstat imagemagick inshellisense internetarchive diff --git a/zed/settings.json b/zed/settings.json index 10ad48a..4b8fca0 100644 --- a/zed/settings.json +++ b/zed/settings.json @@ -1,4 +1,3 @@ -// Zed settings // // For information on how to configure Zed, see the Zed // documentation: https://zed.dev/docs/configuring-zed @@ -15,14 +14,16 @@ "assistant_v2": { "enabled": true }, - // Love this, but it's faked (see run_ollama) + "languages": { + "Typescript": { + "language_servers": ["!typescript-language-server", "vtsls"] + } + }, "assistant": { "version": "1", "provider": { - "name": "openai", - "type": "openai", - "default_model": "gpt-4-turbo-preview", - "api_url": "http://localhost:11434/v1" + "name": "ollama", + "low_speed_timeout_in_seconds": 30 } } }