summarylogtreecommitdiffstats
path: root/install.sh
blob: 7a4f09d8a7e98d923c96f8c255865281dd52a863 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
post_install() {

  echo ""
  echo "Neovim users:"
  echo ""
  echo "    # ln -s /usr/share/vim/vimfiles/after/ftplugin/markdown/instant-markdown.vim"
  echo "            /usr/share/nvim/runtime/ftplugin/markdown/"

  echo ""
  echo "By default, vim-instant-markdown will automatically launch the preview window when you open a Markdown file."
  echo "If you want to manually control this behavior, you can specify"
  echo ""
  echo "    let g:instant_markdown_autostart = 0"
  echo ""
  echo "in your .vimrc. You can then manually trigger preview via the command :InstantMarkdownPreview."
  echo "This command is only available inside Markdown buffers and when the autostart option is turned off."
  echo ""
  echo "For more possible configurations, visit https://github.com/suan/vim-instant-markdown#configuration."
  echo ""
}

# vim: set ts=2 sw=2