Skip to content

Commit

Permalink
feat(settings): add setting for dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
jellydn committed Jun 25, 2024
1 parent e0cf05a commit 7ed485c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
12 changes: 8 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Update your settings.json file with the following configuration:
<!-- ALL-SETTINGS:START -->

```json
// settings.json, generated at Thu Jun 13 2024 22:30:52 GMT+0800 (Singapore Standard Time)
// settings.json, generated at Tue Jun 25 2024 20:47:44 GMT+0800 (Singapore Standard Time)
// Zed settings
//
// For information on how to configure Zed, see the Zed
Expand Down Expand Up @@ -73,17 +73,20 @@ Update your settings.json file with the following configuration:
"show_other_hints": true,
"show_type_hints": true
}
// Uncomment below if use vtsls instead of typescript-language-server
// "language_servers": ["!typescript-language-server", "vtsls", ".."]
}
},
// Use zed commit editor
"terminal": {
"env": {
"EDITOR": "zed --wait"
}
},
// Dockerfile syntax highlighting
"file_types": {
"Dockerfile": ["Dockerfile", "Dockerfile.*"]
}
}

```

<!-- ALL-SETTINGS:END -->
Expand All @@ -99,7 +102,7 @@ Update your keymap.json file with the following key bindings:
<!-- ALL-KEYMAPS:START -->

```json
// keymap.json, generated at Thu Jun 13 2024 22:30:52 GMT+0800 (Singapore Standard Time)
// keymap.json, generated at Tue Jun 25 2024 20:47:44 GMT+0800 (Singapore Standard Time)
[
{
"context": "Editor && (vim_mode == normal || vim_mode == visual) && !VimWaiting && !menu",
Expand Down Expand Up @@ -209,6 +212,7 @@ Update your keymap.json file with the following key bindings:
}
}
]

```

<!-- ALL-KEYMAPS:END -->
Expand Down
6 changes: 4 additions & 2 deletions settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,16 @@
"show_other_hints": true,
"show_type_hints": true
}
// Uncomment below if use vtsls instead of typescript-language-server
// "language_servers": ["!typescript-language-server", "vtsls", ".."]
}
},
// Use zed commit editor
"terminal": {
"env": {
"EDITOR": "zed --wait"
}
},
// Dockerfile syntax highlighting
"file_types": {
"Dockerfile": ["Dockerfile", "Dockerfile.*"]
}
}

0 comments on commit 7ed485c

Please sign in to comment.