Skip to content

Commit

Permalink
add .zed settings
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-ward committed Jun 19, 2024
1 parent 8b2e255 commit 44fcd17
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .zed/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"format_on_save": "on",
"formatter": {
"external": {
"command": "v",
"arguments": ["fmt"]
}
}
}
18 changes: 18 additions & 0 deletions .zed/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[
{
"label": "V run",
"command": "v",
"args": ["run", "$ZED_WORKTREE_ROOT/lsv"],
"tags": ["v-main"],
"use_new_terminal": false,
"reveal": "always"
},
{
"label": "V test",
"command": "v",
"args": ["test", "../lsv"],
"tags": ["v-test"],
"use_new_terminal": false,
"reveal": "always"
}
]

0 comments on commit 44fcd17

Please sign in to comment.