forked from amix/vimrc
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
amix
committed
Dec 27, 2016
1 parent
04abc69
commit a6de243
Showing
67 changed files
with
2,818 additions
and
1,079 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
sources_non_forked/lightline.vim/autoload/lightline/colorscheme/molokai.vim
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
" ============================================================================= | ||
" Filename: autoload/lightline/colorscheme/molokai.vim | ||
" Author: challsted | ||
" License: MIT License | ||
" Last Change: 2016/11/17 00:27:58. | ||
" ============================================================================= | ||
" | ||
let s:black = [ '#232526', 233 ] | ||
let s:gray = [ '#808080', 244 ] | ||
let s:white = [ '#f8f8f2', 234 ] | ||
let s:cyan = [ '#66d9ef', 81 ] | ||
let s:green = [ '#a6e22e', 118 ] | ||
let s:orange = [ '#ef5939', 166 ] | ||
let s:pink = [ '#f92672', 161 ] | ||
let s:red = [ '#ff0000', 160 ] | ||
let s:yellow = [ '#e6db74', 229 ] | ||
|
||
let s:p = {'normal': {}, 'inactive': {}, 'insert': {}, 'replace': {}, 'visual': {}, 'tabline': {}} | ||
|
||
let s:p.normal.left = [ [ s:black, s:cyan ], [ s:orange, s:black ] ] | ||
let s:p.normal.middle = [ [ s:orange, s:black ] ] | ||
let s:p.normal.right = [ [ s:pink, s:black ], [ s:black, s:pink ] ] | ||
let s:p.normal.error = [ [ s:pink, s:black ] ] | ||
let s:p.normal.warning = [ [ s:yellow, s:black ] ] | ||
let s:p.insert.left = [ [ s:black, s:green ], [ s:green, s:black ] ] | ||
let s:p.visual.left = [ [ s:black, s:yellow ], [ s:yellow, s:black ] ] | ||
let s:p.replace.left = [ [ s:black, s:red ], [ s:red, s:black ] ] | ||
let s:p.inactive.left = [ [ s:pink, s:black ], [ s:white, s:black ] ] | ||
let s:p.inactive.middle = [ [ s:gray, s:black ] ] | ||
let s:p.inactive.right = [ [ s:white, s:pink ], [ s:pink, s:black ] ] | ||
let s:p.tabline.left = [ [ s:pink, s:black ] ] | ||
let s:p.tabline.middle = [ [ s:pink, s:black] ] | ||
let s:p.tabline.right = copy(s:p.normal.right) | ||
let s:p.tabline.tabsel = [ [ s:black, s:pink ] ] | ||
|
||
let g:lightline#colorscheme#molokai#palette = lightline#colorscheme#flatten(s:p) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.