├── .gitignore ├── LICENSE ├── README.md ├── autoload ├── colortuner.vim └── colortuner │ ├── conv.vim │ └── ui.vim ├── plugin └── colortuner.vim └── screenshots └── screencast1.gif /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | Thumbs.db 3 | 4 | doc/tags 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zefei/vim-colortuner/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zefei/vim-colortuner/HEAD/README.md -------------------------------------------------------------------------------- /autoload/colortuner.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zefei/vim-colortuner/HEAD/autoload/colortuner.vim -------------------------------------------------------------------------------- /autoload/colortuner/conv.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zefei/vim-colortuner/HEAD/autoload/colortuner/conv.vim -------------------------------------------------------------------------------- /autoload/colortuner/ui.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zefei/vim-colortuner/HEAD/autoload/colortuner/ui.vim -------------------------------------------------------------------------------- /plugin/colortuner.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zefei/vim-colortuner/HEAD/plugin/colortuner.vim -------------------------------------------------------------------------------- /screenshots/screencast1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zefei/vim-colortuner/HEAD/screenshots/screencast1.gif --------------------------------------------------------------------------------