Skip to content

renewelches/continuedev-configs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Continue.dev VSCode Configuration

This repository contains Continue.dev configuration files for local and cloud-based AI coding assistants.

Table of Contents

Setup

1. Install Continue.dev Extension

  1. Open VSCode
  2. Go to Extensions (Cmd+Shift+X on Mac, Ctrl+Shift+X on Windows/Linux)
  3. Search for "Continue", full extension name is Continue - open-source AI code agent"
  4. Click Install on the Continue extension

2. Configuration File Location

Continue.dev uses a configuration file located at:

  • macOS/Linux: ~/.continue/config.yaml
  • Windows: %USERPROFILE%\.continue\config.yaml

3. Apply Configuration

Copy the desired configuration file from this repository to your Continue.dev config location:

# Example for Mac/Linux
cp mac-mini-m4pro-48GB-config-yaml ~/.continue/config.yaml

Using Hugging Face Models Via Ollama

Ollama supports loading GGUF quantized models directly from Hugging Face.

Step 1: Install Ollama

Download and install Ollama from ollama.ai

Step 2: Pull Models from Hugging Face

Ollama can pull models directly using the hf.co/ prefix:

# Example: Pull a quantized model from Hugging Face
ollama pull hf.co/bartowski/FastApply-1.5B-v1.0-GGUF:latest

# Another example
ollama pull hf.co/QuantFactory/Qwen3-Reranker-4B-GGUF:latest

Step 3: Configure in Continue.dev

Add the model to your config.yaml:

models:
  - name: FastApply 1.5B
    provider: ollama
    model: hf.co/bartowski/FastApply-1.5B-v1.0-GGUF:latest
    roles:
      - apply
    defaultCompletionOptions:
      contextLength: 32768

Model Roles

Continue.dev supports several model roles:

  • autocomplete: Code completion as you type
  • chat: Chat-based interactions
  • edit: Code editing suggestions
  • apply: Applying code changes
  • embed: Creating embeddings for retrieval
  • rerank: Reranking search results

Resources

Contributing

Feel free to submit configurations for different hardware setups or model combinations!

License

See LICENSE file for details.

About

Continue.dev configurations for local Ollama LLMs

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors