diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-03-09 23:46:22 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-03-09 23:46:22 +0900 |
| commit | 82184cdfa758fdb1193bd1a82de6fce236b7d174 (patch) | |
| tree | d273c4fd6f43b716d8c4d286a1da8373f4b93b9f /.config/nvim/syntax | |
| parent | 73fa3647434b800e502231da81c3c5a1f2c35bb5 (diff) | |
| download | dotfiles-82184cdfa758fdb1193bd1a82de6fce236b7d174.tar.gz dotfiles-82184cdfa758fdb1193bd1a82de6fce236b7d174.tar.zst dotfiles-82184cdfa758fdb1193bd1a82de6fce236b7d174.zip | |
nvim: remove leaf
Diffstat (limited to '.config/nvim/syntax')
| -rw-r--r-- | .config/nvim/syntax/leaf.vim | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/.config/nvim/syntax/leaf.vim b/.config/nvim/syntax/leaf.vim deleted file mode 100644 index ea86de4..0000000 --- a/.config/nvim/syntax/leaf.vim +++ /dev/null @@ -1,27 +0,0 @@ -scriptencoding utf-8 - -if exists('b:current_syntax') - finish -endif - - -syn match leafCheckboxTodo /\[ \]/ -syn match leafCheckboxDone /\[x\]/ -syn match leafCheckboxCanceled /\[-\]/ -syn region leafComment start="# " end="$" -syn match leafTag /@\w\+/ -syn match leafProperty /\<\%(DEADLINE\|SCHEDULED\|ARCHIVED\): / -syn match leafTimestamp /<\d\d\d\d-\d\d-\d\d\%( [月火水木金土日]\)\?\%( \d\d:\d\d\)\?>/ -syn match leafTimestamp /<\d\d\d\d-\d\d-\d\d\%( [月火水木金土日]\)\?\%( \d\d:\d\d\)\?>--<\d\d\d\d-\d\d-\d\d\%( [月火水木金土日]\)\?\%( \d\d:\d\d\)\?>/ - - -hi default link leafCheckboxTodo Special -hi default link leafCheckboxDone Comment -hi default link leafCheckboxCanceled Comment -hi default link leafComment Comment -hi default link leafTag String -hi default link leafProperty Identifier -hi default link leafTimestamp Identifier - - -let b:current_syntax = 'leaf' |
