From 9191af46b6bee8d3e3474c7f8ea134c800e55985 Mon Sep 17 00:00:00 2001 From: Dhruva Sagar Date: Fri, 21 Jan 2022 23:32:44 +0530 Subject: [PATCH] Updated README Added information regarding overriding configurations for Markdown / ReST filetypes --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 9aa85a7..54d3177 100644 --- a/README.md +++ b/README.md @@ -116,6 +116,15 @@ To get ReST-compatible tables use Markdown and ReST filetypes have automatically configured corners. +> If you wish to override their configurations, it should be done in an after +> plugin, for example : +> +> In a `$VIM/after/ftplugin/markdown/custom.vim` you can add the following : +> +> ```viml +> let b:table_mode_corner='+' +> ``` + You can also define in a table header border how its content should be aligned, whether center, right or left by using a `:` character defined by `g:table_mode_align_char` option.