Fixing the old configuration

This commit is contained in:
2026-03-18 21:56:45 -04:00
parent f6266c7d94
commit 9f229b26c9
51 changed files with 791 additions and 6549 deletions

View File

@@ -11,7 +11,7 @@ Codetyper.nvim is a Neovim plugin written in Lua that acts as an AI-powered codi
Instead of having an AI generate entire files, Codetyper lets developers maintain control:
1. Developer opens a source file (e.g., `index.ts`)
2. A companion "coder file" is created (`index.coder.ts`)
2. A companion "coder file" is created (`index.codetyper/ts`)
3. Developer writes prompts using special tags: `/@ prompt @/`
4. When the closing tag is typed, the LLM generates code
5. Generated code is shown as a conflict for review
@@ -68,10 +68,10 @@ lua/codetyper/
└── agent.lua # Agent-specific prompts
```
## .coder/ Folder
## .codetyper/ Folder
```
.coder/
.codetyper/
├── tree.log # Project structure, auto-updated
├── cost_history.json # LLM cost tracking history
├── brain/ # Knowledge graph storage
@@ -239,7 +239,7 @@ end
Track LLM API costs:
- Session costs tracked in real-time
- All-time costs in `.coder/cost_history.json`
- All-time costs in `.codetyper/cost_history.json`
- Pricing for 50+ models
### 10. Credentials Management
@@ -405,7 +405,7 @@ Stored in `~/.local/share/nvim/codetyper/configuration.json`
patterns = {
open_tag = "/@",
close_tag = "@/",
file_pattern = "*.coder.*",
file_pattern = "*.codetyper/*",
},
auto_gitignore = true,
auto_open_ask = true,
@@ -461,11 +461,11 @@ tools = {
| Target File | Coder File |
|-------------|------------|
| `index.ts` | `index.coder.ts` |
| `utils.py` | `utils.coder.py` |
| `main.lua` | `main.coder.lua` |
| `index.ts` | `index.codetyper/ts` |
| `utils.py` | `utils.codetyper/py` |
| `main.lua` | `main.codetyper/lua` |
Pattern: `name.coder.extension`
Pattern: `name.codetyper/extension`
## Dependencies