+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
23
24
-

25
26
-
Slightly 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
35
-
## Usage
36
37
```
38
-
:colorscheme off
39
```
40
41
-
Supports both `background=light` and `background=dark`.
···
1
+
# vim-colors-plain
2
3
+
This is a fork of [vim-colors-off][] which is being developed based on my
4
+
personal taste.
5
6
+

7
+

8
9
+
## Installation & Usage
10
11
+
With [vim-plug][] you add this to the `.vimrc`:
12
13
+
```
14
+
Plug 'andreypopp/vim-colors-plain'
15
+
```
16
17
+
Then:
18
19
```
20
+
set background=light " Set to dark for a dark variant
21
+
colorscheme plain
22
```
23
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
2
" Version: 0.1
3
-
" Maintainer: github.com/pbrisbin
4
" License: The MIT License (MIT)
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
8
"
9
-
" https://github.com/reedes/vim-colors-pencil
10
"
11
"""
12
hi clear
···
15
syntax reset
16
endif
17
18
-
let g:colors_name='off'
19
20
let s:black = { "gui": "#121212", "cterm": "0" }
21
let s:medium_gray = { "gui": "#767676", "cterm": "243" }
···
1
+
" Name: plain.vim
2
" Version: 0.1
3
+
" Maintainer: github.com/andreypopp
4
" License: The MIT License (MIT)
5
"
6
+
" Based on
7
+
"
8
+
" https://github.com/pbrisbin/vim-colors-off (MIT License)
9
+
"
10
+
" which in turn based on
11
"
12
+
" https://github.com/reedes/vim-colors-pencil (MIT License)
13
"
14
"""
15
hi clear
···
18
syntax reset
19
endif
20
21
+
let g:colors_name='plain'
22
23
let s:black = { "gui": "#121212", "cterm": "0" }
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.