All Projects → yous → vim-open-color

yous / vim-open-color

Licence: MIT license
Vim color scheme using Open Color

Programming Languages

Vim Script
2826 projects
ruby
36898 projects - #4 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to vim-open-color

Antares
Antares - dark colorscheme for vim/neovim
Stars: ✭ 17 (-51.43%)
Mutual labels:  vim-colors, vim-colorschemes
vim-colors
Color Schemes for Vim, 256 Colors ⚫️ Dark:Moody ⚪️ Light:Garden 🔲 16-Colors:Messy | Wiki for extras
Stars: ✭ 16 (-54.29%)
Mutual labels:  vim-colors, vim-colorschemes
github-light.vim
Github colorscheme for vim
Stars: ✭ 33 (-5.71%)
Mutual labels:  vim-colorschemes
vim-thematic
Alter Vim's appearance to suit your task & environ
Stars: ✭ 218 (+522.86%)
Mutual labels:  vim-colorschemes
sourcerer.vim
vim colorscheme
Stars: ✭ 42 (+20%)
Mutual labels:  vim-colors
sourcerer
read code like a wizard. a 16bit color scheme for hackers
Stars: ✭ 136 (+288.57%)
Mutual labels:  vim-colors
angr.vim
A pleasant, mild, dark (n)vim theme.
Stars: ✭ 53 (+51.43%)
Mutual labels:  vim-colors
vim-lighthaus
A Lighthaus theme for (n)vim, vim-airline and lightline
Stars: ✭ 33 (-5.71%)
Mutual labels:  vim-colors
vim-sass-colors
sass/scss/less/css color literal and color variable highlighting (works with imports)
Stars: ✭ 24 (-31.43%)
Mutual labels:  vim-colors
ceudah.vim
A Material Colorscheme Bright for Vim.
Stars: ✭ 14 (-60%)
Mutual labels:  vim-colors
Nord Vim
An arctic, north-bluish clean and elegant Vim theme.
Stars: ✭ 1,987 (+5577.14%)
Mutual labels:  vim-colors
disco.vim
A full set of 2-, 8-, 16-, 88-, 256-, and GUI-color-compatible Vim colors.
Stars: ✭ 53 (+51.43%)
Mutual labels:  vim-colors
aquarium-vim
🌊 Aquarium, a simple vibrant dark theme for vim 🗒
Stars: ✭ 151 (+331.43%)
Mutual labels:  vim-colors
Jellybeans.vim
A colorful, dark color scheme for Vim.
Stars: ✭ 1,584 (+4425.71%)
Mutual labels:  vim-colorschemes

open-color.vim

CircleCI

Vim color scheme using Open Color. Conversion from original colors to 256 colors has done according to CIEDE2000. See the implementation.

Demo

The previews are generated based on the latest master branch.

Screenshots (before v2.3.0)

GUI

open-color.vim with dark background in GUI

open-color.vim with light background in GUI

256-color

open-color.vim with dark background in 256 colors

open-color.vim with light background in 256 colors

Installation

  • Pathogen
    1. cd ~/.vim/bundle
    2. git clone https://github.com/yous/vim-open-color.git
  • Vundle
    1. Add Plugin 'yous/vim-open-color' to .vimrc
    2. Run :PluginInstall
  • NeoBundle
    1. Add NeoBundle 'yous/vim-open-color' to .vimrc
    2. Run :NeoBundleInstall
  • vim-plug
    1. Add Plug 'yous/vim-open-color' to .vimrc
    2. Run :PlugInstall

Usage

  1. Check your terminal.

    • If your terminal emulator supports true colors, add the following lines to your .vimrc.

      " Use 24-bit (true-color) mode in Vim/Neovim when outside tmux or screen.
      " If you're using tmux version 2.2 or later, you can remove the outermost $TMUX
      " check and use tmux's 24-bit color support
      " (http://sunaku.github.io/tmux-24bit-color.html#usage for more information.)
      if empty($TMUX) && empty($STY)
        " See https://gist.github.com/XVilka/8346728.
        if $COLORTERM =~# 'truecolor' || $COLORTERM =~# '24bit'
          if has('termguicolors')
            " See :help xterm-true-color
            if $TERM =~# '^screen'
              let &t_8f = "\<Esc>[38;2;%lu;%lu;%lum"
              let &t_8b = "\<Esc>[48;2;%lu;%lu;%lum"
            endif
            set termguicolors
          endif
        endif
      endif
    • To use 256-color mode, set your $TERM as *-256color or add set t_Co=256 in your .vimrc.

  2. Enable open-color color scheme:

    colorscheme open-color

License

Copyright © Chayoung You. See LICENSE.txt for details.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].