diff options
author | Andrey Popp <[email protected]> | 2018-05-02 16:57:57 +0100 |
---|---|---|
committer | Andrey Popp <[email protected]> | 2018-05-02 16:57:57 +0100 |
commit | 97e5b980f2c6180f9d740998ba6ecd0877a04bb9 (patch) | |
tree | 8d66088354b30ec4c9da7a60b068ef8c7f475263 | |
parent | 58d865bd4d67c41562ed3cd6470c976b45c6581b (diff) |
Rename
-rw-r--r-- | README.md | 46 | ||||
-rw-r--r-- | colors/plain.vim (renamed from colors/off.vim) | 15 | ||||
-rw-r--r-- | screenshots/plain-dark.png | bin | 0 -> 276455 bytes | |||
-rw-r--r-- | screenshots/plain-light.png | bin | 0 -> 281161 bytes | |||
-rw-r--r-- | shot.png | bin | 278094 -> 0 bytes |
5 files changed, 24 insertions, 37 deletions
@@ -1,41 +1,25 @@ | |||
1 | # vim-colors-off | 1 | # vim-colors-plain |
2 | 2 | ||
3 | *This is very much a work in progress* | 3 | This is a fork of [vim-colors-off][] which is being developed based on my |
4 | personal taste. | ||
4 | 5 | ||
5 | For a number of weeks, I ran vim with `syntax off`. It was quite nice, | 6 | ![Screenshot](screenshots/plain-dark.png) |
6 | with 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 | ||
12 | Therefore, I aimed to find or create a colorscheme to solve these two | 11 | With [vim-plug][] you add this to the `.vimrc`: |
13 | issues. | ||
14 | 12 | ||
15 | The result is very much based on the [pencil][] colorscheme, which is | 13 | ``` |
16 | surprising because it's a very colorful colorscheme, but: | 14 | Plug '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 | |||
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 | 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 | ||
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 | """ |
12 | hi clear | 15 | hi clear |
@@ -15,7 +18,7 @@ if exists('syntax on') | |||
15 | syntax reset | 18 | syntax reset |
16 | endif | 19 | endif |
17 | 20 | ||
18 | let g:colors_name='off' | 21 | let g:colors_name='plain' |
19 | 22 | ||
20 | let s:black = { "gui": "#121212", "cterm": "0" } | 23 | let s:black = { "gui": "#121212", "cterm": "0" } |
21 | let s:medium_gray = { "gui": "#767676", "cterm": "243" } | 24 | let 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 | |||