+15
-31
README.md
+15
-31
README.md
···
1
-
# vim-colors-off
2
-
3
-
*This is very much a work in progress*
4
-
5
-
For a number of weeks, I ran vim with `syntax off`. It was quite nice,
6
-
with only two annoyances:
7
-
8
-
- Bright white on jet black was a bit off-putting.
9
-
- There were cases when I did miss the lack of color, vimdiff for
10
-
example.
11
-
12
-
Therefore, I aimed to find or create a colorscheme to solve these two
13
-
issues.
14
-
15
-
The result is very much based on the [pencil][] colorscheme, which is
16
-
surprising because it's a very colorful colorscheme, but:
17
-
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
1
+
# vim-colors-plain
23
2
24
-

3
+
This is a fork of [vim-colors-off][] which is being developed based on my
4
+
personal taste.
25
5
26
-
Slightly out of date, not super exciting...
6
+

7
+

27
8
28
-
## Installation
9
+
## Installation & Usage
29
10
30
-
- Use [Vundle][]
31
-
- Add "pbrisbin/vim-colors-off" as a plugin
11
+
With [vim-plug][] you add this to the `.vimrc`:
32
12
33
-
[vundle]: https://github.com/gmarik/Vundle.vim
13
+
```
14
+
Plug 'andreypopp/vim-colors-plain'
15
+
```
34
16
35
-
## Usage
17
+
Then:
36
18
37
19
```
38
-
:colorscheme off
20
+
set background=light " Set to dark for a dark variant
21
+
colorscheme plain
39
22
```
40
23
41
-
Supports 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
+9
-6
colors/off.vim
colors/plain.vim
+9
-6
colors/off.vim
colors/plain.vim
···
1
-
" Name: off.vim
1
+
" Name: plain.vim
2
2
" Version: 0.1
3
-
" Maintainer: github.com/pbrisbin
3
+
" Maintainer: github.com/andreypopp
4
4
" License: The MIT License (MIT)
5
5
"
6
-
" A colorscheme meant to look like a more pleasant version of syntax off.
7
-
" Structure and what little color there is is taken from pencil.vim
6
+
" Based on
7
+
"
8
+
" https://github.com/pbrisbin/vim-colors-off (MIT License)
9
+
"
10
+
" which in turn based on
8
11
"
9
-
" https://github.com/reedes/vim-colors-pencil
12
+
" https://github.com/reedes/vim-colors-pencil (MIT License)
10
13
"
11
14
"""
12
15
hi clear
···
15
18
syntax reset
16
19
endif
17
20
18
-
let g:colors_name='off'
21
+
let g:colors_name='plain'
19
22
20
23
let s:black = { "gui": "#121212", "cterm": "0" }
21
24
let s:medium_gray = { "gui": "#767676", "cterm": "243" }
screenshots/plain-dark.png
screenshots/plain-dark.png
This is a binary file and will not be displayed.
screenshots/plain-light.png
screenshots/plain-light.png
This is a binary file and will not be displayed.
shot.png
shot.png
This is a binary file and will not be displayed.