Provide vim conceal for:
- emoji 👍
:+1:
- html escape character ♥
♥
- fontawesome
- html:
<i class="fa-solid fa-rss"></i>
- tex:
\faIcon{rss}
- javascriptreact/typescriptreact:
<FontAwesomeIcon icon="fa-solid fa-rss" />
- vue:
<font-awesome-icon icon="fa-solid fa-rss" />
- html:
Before using this plugin:
After using this plugin:
let g:rainbow_conf = {
\ 'separately': {
\ 'html': 0,
\ },
\ }
vimtex support fontawesome conceal for latex and it detects user if import fontawesome5 package, which is more powerful. The plugin's function which conceals fontawesome for latex will not be called by default in order to avoid conflict.
-
Change conceal color?
-
KeitaNakamura/tex-conceal.vim#36, the blue emoji in the screenshot can be realized by:
let g:indentLine_color_term = 'blue' let g:indentLine_color_gui = 'blue'
-
- https://github.com/lervag/vimtex: a comprehensive LaTeX IDE.
- https://github.com/KeitaNakamura/tex-conceal.vim: the first plugin to do this work for vim.
- https://github.com/neoclide/coc-sources: a plugin to input emoji, written by typescript.
- https://github.com/nyaa8/coc-emoji-shortcodes: a plugin to input emoji shortcodes, written by typescript.
- https://github.com/junegunn/vim-emoji: a plugin to input emoji shortcodes, written by pure vimscript.