Skip to content

adelarsq/vim-grimmjow

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

75 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Vim Colorscheme: grimmjow

Light colorscheme for gvim, macvim and neovim.

Main features:

  • 256 color terminal support
  • 24-bit color terminal support
  • Support for several plugins

Optimized for the following languages:

  • C/C++
  • HTML (+ Django, JavaScript)
  • Java
  • LaTeX
  • Python
  • Ruby
  • Vim

Installation

  1. Add this to your vimrc:

     Plug 'https://github.com/adelarsq/vim-grimmjow'
     colorscheme grimmjow
    
  2. Run

     :PlugInstall
    
  3. Restart Vim

  1. Add this to your vimrc:

     Bundle 'https://github.com/adelarsq/vim-grimmjow'
    
     colorscheme grimmjow
     set background=light
    
  2. Run

     :BundleInstall
    
  3. Restart Vim

256 color terminal

  1. Make sure your terminal supports 256 colors

  2. In addition to the installation, add this to your vimrc:

     set t_Co=256
    
     " in case t_Co alone doesn't work, add this as well:
     let &t_AB="\e[48;5;%dm"
     let &t_AF="\e[38;5;%dm"
    

24-bit color terminal

To configure vim to use 24-bit colors use this config on .vimrc:

if (has('termguicolors'))
    set termguicolors
endif

About

Explicitly supported plugins:

The following colorschemes were influential for this theme: vim-kalisi, blackboard, github, molokai, pyte and winter.

Thanks to https://github.com/godlygeek/csapprox, which helped greatly in bringing 256 color terminal support to this colorscheme!

It contains only theme for light background. The default colorscheme is light, as is Vims default setting, if you don't set the background manually.

Suggestions for improving support for other programming languages and plugins are welcome!

This colorscheme is licensed under the Apache 2.0 license.

Releases

No releases published

Packages

No packages published