Update README.md

This commit is contained in:
gechandesu 2021-09-02 07:49:52 +03:00 committed by GitHub
parent acfb048e62
commit c7d24bcbb0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 5 deletions

View File

@ -1,22 +1,23 @@
# todolist-syntax
Vim syntax file for todo lists (**\*.td**).
Vim syntax file for todo lists (**\*.todo**, **\*.td**).
# Installation
```shell
mkdir -p ~/.vim/syntax
wget -O ~/.vim/syntax/todolist.vim https://raw.githubusercontent.com/gechandesu/todolist-syntax/main/todolist.vim
echo 'autocmd BufRead,BufNewFile *.td set filetype=todolist' >> ~/.vim/filetype.vim
echo 'autocmd BufRead,BufNewFile *.todo,*.td set filetype=todolist' >> ~/.vim/filetype.vim
```
# Syntax
```
- Uncompleted task (blue)
- Uncompleted task (light blue)
+ Completed task (green)
x Rejected task (red)
# Comment (cyan)
TODO mark
# Comment
\Marked text (yellow background)\
`Code (magenta)`
Plain text
```