Enable italic text rendering by default

This commit is contained in:
Alex Vear
2019-10-05 16:59:55 +01:00
parent 14402ff2a5
commit b8eb8a82d0
2 changed files with 8 additions and 9 deletions

View File

@@ -152,22 +152,21 @@ an |autocmd| like so.
------------------------------------------------------------------------------
*'b:org_use_italics'* *'g:org_use_italics'*
Value: numeric~
Default: 0~
Default: 1~
Display italic org-mode markup (e.g. `/this is italic org-mode markup/`) using
the italic variant of your font.
Note: this option is disabled by default because some terminals and monospaced
fonts don't support the use of italics.
As some terminals, terminal multiplexers and monospaced fonts don't support
the use of italics, org.vim provides a mechanism to disable italic text.
To enable this feature in all Org mode files place the following line in your
vimrc:
To disable for all Org mode files place the following line in your vimrc:
>
let g:org_use_italics = 1
let g:org_use_italics = 0
<
To enable italics only in a single buffer, use this instead:
To disable italics only in a single buffer, use this instead:
>
let b:org_use_italics = 1
let b:org_use_italics = 0
<
==============================================================================
5. LEGAL *org-legal*