Update README.md

This commit is contained in:
gechandesu 2021-08-31 14:52:29 +03:00 committed by GitHub
parent 66be6d9a9c
commit acfb048e62
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,2 +1,22 @@
# todolist-syntax
Vim syntax file for todo lists.
Vim syntax file for todo lists (**\*.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
```
# Syntax
```
- Uncompleted task (blue)
+ Completed task (green)
x Rejected task (red)
# Comment (cyan)
TODO mark
Plain text
```