All Projects → jtratner → Vim Flavored Markdown

jtratner / Vim Flavored Markdown

Labels

Projects that are alternatives of or similar to Vim Flavored Markdown

Align
Help folks to align text, eqns, declarations, tables, etc
Stars: ✭ 132 (-13.73%)
Mutual labels:  viml
Vim Textobj Indent
Vim plugin: Text objects for indented blocks of lines
Stars: ✭ 140 (-8.5%)
Mutual labels:  viml
Mru.vim
Plugin to manage Most Recently Used (MRU) files
Stars: ✭ 149 (-2.61%)
Mutual labels:  viml
Eddie Vim2
Yet another vimrc
Stars: ✭ 135 (-11.76%)
Mutual labels:  viml
Doxygentoolkit.vim
Simplify Doxygen documentation in C, C++, Python.
Stars: ✭ 138 (-9.8%)
Mutual labels:  viml
C.vim
C/C++ IDE -- Write and run programs. Insert statements, idioms, comments etc.
Stars: ✭ 142 (-7.19%)
Mutual labels:  viml
Mustache.vim
Vim mode for mustache and handlebars (Deprecated)
Stars: ✭ 129 (-15.69%)
Mutual labels:  viml
Dotvim
A community driven framework for vim
Stars: ✭ 151 (-1.31%)
Mutual labels:  viml
Inkpot
Inkpot 88/256 Colour Scheme for Vim
Stars: ✭ 138 (-9.8%)
Mutual labels:  viml
Vim Js Context Coloring
JavaScript Context Coloring in Vim
Stars: ✭ 149 (-2.61%)
Mutual labels:  viml
Haskellmode Vim
An unpacked copy of the haskellmode vimball. Ping me if it needs updating.
Stars: ✭ 135 (-11.76%)
Mutual labels:  viml
Vim Addon Local Vimrc
kiss local vimrc with hash protection
Stars: ✭ 136 (-11.11%)
Mutual labels:  viml
Matchit.zip
extended % matching for HTML, LaTeX, and many other languages
Stars: ✭ 146 (-4.58%)
Mutual labels:  viml
Vim Textobj Line
Vim plugin: Text objects for the current line
Stars: ✭ 134 (-12.42%)
Mutual labels:  viml
Vim Jekyll
📝 Fork of psykidellic/vim-jekyll because actually forking it freaks out
Stars: ✭ 151 (-1.31%)
Mutual labels:  viml
Unite Outline
outline source for unite.vim
Stars: ✭ 132 (-13.73%)
Mutual labels:  viml
Minivimrc
a tiny vimrc to be used primarily for troubleshooting plugins
Stars: ✭ 140 (-8.5%)
Mutual labels:  viml
Vim Tmuxify
Vim plugin for handling tmux panes.
Stars: ✭ 152 (-0.65%)
Mutual labels:  viml
Vimside
Vim Scala IDE (VimSIde) built upon ENSIME
Stars: ✭ 151 (-1.31%)
Mutual labels:  viml
Tlib vim
Some utility functions for VIM
Stars: ✭ 147 (-3.92%)
Mutual labels:  viml

Vim-Flavored-Markdown

Add-on to Tim Pope's markdown.vim to highlight using Github Flavored Markdown.

a syntax plugin that extends the Tim Pope's markdown syntax file to recognize github code blocks like:

```yourLanguage
Some code
```

It also colors markdownCode blocks and in-lines as String, so they are more easily differentiable in your code.

Finally, it no longer highlights multiple underscores, i.e.:

_this_gets_highlighted_
but_this_does_not

Install

Best way - use Pathogen

If you use Pathogen, you can just clone this into your bundles

cd ~/.vim/bundle
git clone git://github.com/jtratner/vim-flavored-markdown.git

Otherwise, copy the file to your syntax folder

curl https://raw.githubusercontent.com/jtratner/vim-flavored-markdown/master/syntax/ghmarkdown.vim -o ~/.vim/syntax/ghmarkdown.vim

Use flavored-markdown by default

Add the following autocmd to your .vimrc:

augroup markdown
    au!
    au BufNewFile,BufRead *.md,*.markdown setlocal filetype=ghmarkdown
augroup END

See it in action

After installing, open up this readme, and you'll see fenced awesomeness.

License

MIT

Contributors to Vim-Flavored-Markdown

Vim-Flavored-Markdown author: Jeff Tratner (jtratner)

markdown.vim author: Tim Pope (tpope)

Along with all of the various contributors to markdown.vim

Thanks to @dankosaur, @knewter, and @Niggler for contributing.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].