All Projects → w0ng → Vim Hybrid

w0ng / Vim Hybrid

A dark color scheme for Vim

Labels

Projects that are alternatives of or similar to Vim Hybrid

Vim Json
Syntax highlighting for JSON in Vim
Stars: ✭ 91 (-93.41%)
Mutual labels:  viml
Vim Howdoi
A Vim frontend for howdoi, the awesome command line tool that lets you ask what you need and grabs the snippet of code from SO.
Stars: ✭ 96 (-93.04%)
Mutual labels:  viml
Vim Follow My Lead
Vim plugin for showing all your <Leader> mappings in a readable table including the descriptions.
Stars: ✭ 100 (-92.75%)
Mutual labels:  viml
Yavide
Modern C/C++ integrated development environment
Stars: ✭ 1,306 (-5.36%)
Mutual labels:  viml
Vip
DEPRECATED - Switch to https://github.com/tobyS/pdv and https://github.com/tobyS/vip instead!
Stars: ✭ 94 (-93.19%)
Mutual labels:  viml
Vim Ruby Minitest
Vim highlighting & completion for MiniTest
Stars: ✭ 97 (-92.97%)
Mutual labels:  viml
Unite Tag
tags soruce for unite.vim
Stars: ✭ 91 (-93.41%)
Mutual labels:  viml
Vimrc
My vim files (i'm a n00b, don't use these)
Stars: ✭ 100 (-92.75%)
Mutual labels:  viml
Devbox
Solomon's dev environment
Stars: ✭ 95 (-93.12%)
Mutual labels:  viml
Vimperator Colors
colorsheme
Stars: ✭ 99 (-92.83%)
Mutual labels:  viml
Vim Jst
A vim plugin for highlighting and indenting JST/EJS syntax
Stars: ✭ 92 (-93.33%)
Mutual labels:  viml
Cmd2.vim
cmdline-mode enhancement for Vim
Stars: ✭ 94 (-93.19%)
Mutual labels:  viml
Textobjectify
TextObjectify is a Vim plugin which improves text-objects
Stars: ✭ 98 (-92.9%)
Mutual labels:  viml
Prolog.vim
Prolog Integration for Vim
Stars: ✭ 91 (-93.41%)
Mutual labels:  viml
Vim Arduino Syntax
Arduino syntax files for Vim
Stars: ✭ 100 (-92.75%)
Mutual labels:  viml
Dotfiles
My dotfiles
Stars: ✭ 91 (-93.41%)
Mutual labels:  viml
Preto
A minimal dark theme for VIM.
Stars: ✭ 97 (-92.97%)
Mutual labels:  viml
Browser Connect.vim
Live browser interaction for VIM.
Stars: ✭ 101 (-92.68%)
Mutual labels:  viml
Vim Togglelist
Functions to toggle the [Location List] and the [Quickfix List] windows.
Stars: ✭ 100 (-92.75%)
Mutual labels:  viml
Elixir.nvim
Vim Completion/Doc/Eval for Elixir (nvim), compile https://github.com/awetzel/neovim-elixir and https://github.com/awetzel/nvim-rplugin
Stars: ✭ 99 (-92.83%)
Mutual labels:  viml

hybrid.vim

A dark colour scheme for Vim that combines the:

Updates

  • 05/01/2016: Replaced let g:hybrid_use_Xresources = 1 in favour of let g:hybrid_custom_term_colors = 1
  • 05/01/2016: Added let g:hybrid_reduced_contrast = 1

Requirements

  • gVim 7.3+ on Linux, Mac and Windows.
  • Vim 7.3+ on Linux and Mac, using a terminal that supports 256 colours.

Installation

  1. Copy colors/hybrid.vim to:

    ~/.vim/colors/hybrid.vim
    

    or alternatively, use a plugin manger such as vim-plug, NeoBundle, Vundle, or Pathogen.

  2. Add to ~/.vimrc:

    set background=dark
    colorscheme hybrid
    

Define custom terminal colours (recommended)

Due to the limited 256 palette, colours in Vim and gVim will still be slightly different.

In order to have Vim use the same colours as gVim (the way this colour scheme is intended) define the basic 16 colours in your terminal.

Linux users: rxvt-unicode, xterm

  1. Add the default palette to ~/.Xresources:

    https://gist.github.com/3278077

    palette

    or alternatively, add the reduced contrast palette to ~/.Xresources:

    https://gist.github.com/w0ng/16e33902508b4a0350ae

    palette

  2. Add to ~/.vimrc:

    let g:hybrid_custom_term_colors = 1
    let g:hybrid_reduced_contrast = 1 " Remove this line if using the default palette.
    colorscheme hybrid
    

OSX users: iTerm

  1. Import the default colour preset into iTerm:

    https://raw.githubusercontent.com/w0ng/dotfiles/master/iterm2/hybrid.itermcolors

    iterm_palette

    or alternatively, import the reduced contrast color preset into iTerm:

    https://raw.githubusercontent.com/w0ng/dotfiles/master/iterm2/hybrid-reduced-contrast.itermcolors

    iterm_palette_reduced

  2. Add to ~/.vimrc:

    let g:hybrid_custom_term_colors = 1
    let g:hybrid_reduced_contrast = 1 " Remove this line if using the default palette.
    colorscheme hybrid
    

Screenshots

Default palette on Linux

vim-help vim-python vim-markdown vim-diff vim-spell

Reduced contrast palette on OSX

vim-reduced1 vim-reduced2 vim-reduced3

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].