Add Vim syntax highlighting

This commit is contained in:
2026-04-10 11:06:06 -05:00
parent 525f4bd065
commit 042f21a9c6
3 changed files with 66 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
# Vim support for `str`
This directory provides Vim syntax highlighting and filetype detection for the `str` string manipulation language.
## Installation
### Manual Installation
Copy the `ftdetect` and `syntax` directories into your Vim or Neovim configuration directory.
**For Vim:**
```bash
cp -r editor-support/vim/ftdetect ~/.vim/
cp -r editor-support/vim/syntax ~/.vim/
```
**For Neovim:**
```bash
cp -r editor-support/vim/ftdetect ~/.config/nvim/
cp -r editor-support/vim/syntax ~/.config/nvim/
```