feature: vim colors
sigmap opened this issue · 3 comments
sigmap commented
Support for vim color themes, export/import
bignimbus commented
Vim does have its own terminal. https://vimhelp.org/terminal.txt.html g:terminal_ansi_colors
. We could offer the option to export to a simple vimscript:
let g:terminal_ansi_colors = [
\'#000000',
\'#d70061',
\'#3ad900',
\'#ff9d00',
\'#008ec2',
\'#9f1ece',
\'#40e0d0',
\'#ffffff',
\'#8787af',
\'#ff005f',
\'#5ff967',
\'#ffff00',
\'#00bbff',
\'#c526ff',
\'#95e3db',
\'#ffffff'
\]
This isn't what someone would call a "vim theme" or "vim colorscheme" but since vim does have a standalone terminal emulator, it seems like it would be a valid export target, if a bit niche.