Initial draft of readme

This commit is contained in:
innerteapot 2025-08-18 02:47:46 +00:00
parent 6c048e47bd
commit 10660e0518

26
README.md Normal file
View File

@ -0,0 +1,26 @@
# Inner Teapot vimwiki
This repo contains the contents of my tilde.down vimwiki which also generates my town web site.
## Requirements
- vim
- vimwiki plugin
- vimwiki_markdown (installed via pipx)
## Configuration
```
let g:vimwiki_list = [{'path': '~/vimwiki/',
\ 'syntax': 'markdown',
\ 'ext': '.md',
\ 'path_html': '~/public_html',
\ 'template_path': '~/vimwiki/templates/',
\ 'template_default': 'default',
\ 'template_ext': '.tpl',
\ 'custom_wiki2html': 'vimwiki_markdown'}]
let g:vimwiki_global_ext = 0
map <leader>D :put =strftime('# %Y-%m-%d')<CR>
```