1
0
mirror of https://github.com/amix/vimrc synced 2025-08-06 05:25:01 +08:00

Updated plugins

This commit is contained in:
Amir
2024-01-07 16:14:20 +01:00
parent 86762cf230
commit f676f799e7
172 changed files with 3227 additions and 1204 deletions

View File

@ -349,6 +349,27 @@ The following options control which syntax extensions will be turned on. They ar
let g:vim_markdown_edit_url_in = 'tab'
### Borderless tables
- `g:vim_markdown_borderless_table`
Add support for borderless tables, such as:
```
header 1|header 2
--|--
data 1|data 2
```
if set to `1`:
let g:vim_markdown_borderless_table = 1
the table would be formatted as usual:
```
| header 1 | header 2 |
|----------|----------|
| data 1 | data 2 |
```
## Mappings
The following work on normal and visual modes: