aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md46
1 files changed, 15 insertions, 31 deletions
diff --git a/README.md b/README.md
index b4d86eb..a161398 100644
--- a/README.md
+++ b/README.md
@@ -1,41 +1,25 @@
1# vim-colors-off 1# vim-colors-plain
2 2
3*This is very much a work in progress* 3This is a fork of [vim-colors-off][] which is being developed based on my
4personal taste.
4 5
5For a number of weeks, I ran vim with `syntax off`. It was quite nice, 6![Screenshot](screenshots/plain-dark.png)
6with only two annoyances: 7![Screenshot](screenshots/plain-light.png)
7 8
8- Bright white on jet black was a bit off-putting. 9## Installation & Usage
9- There were cases when I did miss the lack of color, vimdiff for
10 example.
11 10
12Therefore, I aimed to find or create a colorscheme to solve these two 11With [vim-plug][] you add this to the `.vimrc`:
13issues.
14 12
15The result is very much based on the [pencil][] colorscheme, which is 13```
16surprising because it's a very colorful colorscheme, but: 14Plug 'andreypopp/vim-colors-plain'
17 15```
18- It uses a very sane approach to defining and setting colors
19- It has nice background and foreground colors
20- In the areas where I do want color, I like how it colors things
21
22[pencil]: https://github.com/reedes/vim-colors-pencil
23
24![Screenshot](shot.png)
25
26Slightly out of date, not super exciting...
27
28## Installation
29
30- Use [Vundle][]
31- Add "pbrisbin/vim-colors-off" as a plugin
32
33[vundle]: https://github.com/gmarik/Vundle.vim
34 16
35## Usage 17Then:
36 18
37``` 19```
38:colorscheme off 20set background=light " Set to dark for a dark variant
21colorscheme plain
39``` 22```
40 23
41Supports both `background=light` and `background=dark`. 24[vim-colors-off]: https://github.com/pbrisbin/vim-colors-off
25[vim-plug]: https://github.com/junegunn/vim-plug