Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lervag/wiki-ft.vim
Simple Vim filetype plugin for wiki-files
https://github.com/lervag/wiki-ft.vim
vim vim-ftplugin vim-plugin
Last synced: 20 days ago
JSON representation
Simple Vim filetype plugin for wiki-files
- Host: GitHub
- URL: https://github.com/lervag/wiki-ft.vim
- Owner: lervag
- License: mit
- Created: 2018-10-29T10:18:59.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-05-08T06:55:50.000Z (6 months ago)
- Last Synced: 2024-08-07T18:46:16.594Z (3 months ago)
- Topics: vim, vim-ftplugin, vim-plugin
- Language: Vim Script
- Size: 23.4 KB
- Stars: 14
- Watchers: 3
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Introduction
This is a simple [Vim](http://www.vim.org/) filetype plugin for `.wiki` files
that adds some syntax highlighting and very simple folding functions. It
depends on [`wiki.vim`](https://github.com/lervag/wiki.vim) for proper
highlighting of links.See [`:h wiki-ft`](doc/wiki-ft.txt) for more information.
# Installation
If you use [vim-plug](https://github.com/junegunn/vim-plug), then add the
following lines to your `vimrc` file:```vim
Plug 'lervag/wiki.vim'
Plug 'lervag/wiki-ft.vim'" If you do not want to use the wiki.vim plugin:
let g:wiki_loaded = 1
```