diff options
author | Guangxiong Lin <[email protected]> | 2024-03-30 09:35:52 +0800 |
---|---|---|
committer | Guangxiong Lin <[email protected]> | 2024-03-30 09:35:52 +0800 |
commit | 8975ccf1c3b24c1088d3ec9449741a4092ba7ef5 (patch) | |
tree | 372c19c19666f6aee1ba4073f11402264653056f | |
parent | 66f75539f7806d02d12b6ebb9788f47b48831a2f (diff) | |
download | dotfiles-8975ccf1c3b24c1088d3ec9449741a4092ba7ef5.tar.gz dotfiles-8975ccf1c3b24c1088d3ec9449741a4092ba7ef5.tar.bz2 dotfiles-8975ccf1c3b24c1088d3ec9449741a4092ba7ef5.zip |
Add vim markdown custom syntax
-rw-r--r-- | .vim/after/syntax/markdown.vim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.vim/after/syntax/markdown.vim b/.vim/after/syntax/markdown.vim new file mode 100644 index 0000000..7382291 --- /dev/null +++ b/.vim/after/syntax/markdown.vim @@ -0,0 +1,3 @@ +syntax match mkdListItemCheckbox + \ /\%(TODO\|DOING\|DONE\)\ze\s\+/ + \ contained contains=mkdListItem |