aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Popp <[email protected]>2018-05-02 16:57:57 +0100
committerAndrey Popp <[email protected]>2018-05-02 16:57:57 +0100
commit97e5b980f2c6180f9d740998ba6ecd0877a04bb9 (patch)
tree8d66088354b30ec4c9da7a60b068ef8c7f475263
parent58d865bd4d67c41562ed3cd6470c976b45c6581b (diff)
Rename
-rw-r--r--README.md46
-rw-r--r--colors/plain.vim (renamed from colors/off.vim)15
-rw-r--r--screenshots/plain-dark.pngbin0 -> 276455 bytes
-rw-r--r--screenshots/plain-light.pngbin0 -> 281161 bytes
-rw-r--r--shot.pngbin278094 -> 0 bytes
5 files changed, 24 insertions, 37 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
diff --git a/colors/off.vim b/colors/plain.vim
index fce8d45..0f2208b 100644
--- a/colors/off.vim
+++ b/colors/plain.vim
@@ -1,12 +1,15 @@
1" Name: off.vim 1" Name: plain.vim
2" Version: 0.1 2" Version: 0.1
3" Maintainer: github.com/pbrisbin 3" Maintainer: github.com/andreypopp
4" License: The MIT License (MIT) 4" License: The MIT License (MIT)
5" 5"
6" A colorscheme meant to look like a more pleasant version of syntax off. 6" Based on
7" Structure and what little color there is is taken from pencil.vim
8" 7"
9" https://github.com/reedes/vim-colors-pencil 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)
10" 13"
11""" 14"""
12hi clear 15hi clear
@@ -15,7 +18,7 @@ if exists('syntax on')
15 syntax reset 18 syntax reset
16endif 19endif
17 20
18let g:colors_name='off' 21let g:colors_name='plain'
19 22
20let s:black = { "gui": "#121212", "cterm": "0" } 23let s:black = { "gui": "#121212", "cterm": "0" }
21let s:medium_gray = { "gui": "#767676", "cterm": "243" } 24let s:medium_gray = { "gui": "#767676", "cterm": "243" }
diff --git a/screenshots/plain-dark.png b/screenshots/plain-dark.png
new file mode 100644
index 0000000..642920b
--- /dev/null
+++ b/screenshots/plain-dark.png
Binary files differ
diff --git a/screenshots/plain-light.png b/screenshots/plain-light.png
new file mode 100644
index 0000000..86b90c9
--- /dev/null
+++ b/screenshots/plain-light.png
Binary files differ
diff --git a/shot.png b/shot.png
deleted file mode 100644
index e13507d..0000000
--- a/shot.png
+++ /dev/null
Binary files differ