vim

Solarized Vim

Introduction#

Spending most of the time on terminal can be a big deal for eyes. Wisely choosing color scheme can benefit your eyes in many ways. Recently I ran into Solarized ColorScheme for Vim. Adding this small plugin can make a big difference on text appearance on terminal. Many thanks to Ethan Schoonover for developing this package. The howtos are explained pretty well here. Enjoy!

.vimrc

Solarized has two options - light and dark mode.

Light Mode:

syntax enable
set background=light
colorscheme solarized 

Dark Mode:

syntax enable
set background=dark
colorscheme solarized 

This modified text is an extract of the original Stack Overflow Documentation created by the contributors and released under CC BY-SA 3.0 This website is not affiliated with Stack Overflow