-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
…yper and vim and bash prompt
- Loading branch information
1 parent
0df001c
commit 5e859d1
Showing
7 changed files
with
71 additions
and
57 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# editorconfig.org | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false | ||
|
||
[*.txt] | ||
trim_trailing_whitespace = false |
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 @@ | ||
node_modules |
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,3 @@ | ||
{ | ||
"singleQuote": true | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,47 @@ | ||
'use strict' | ||
'use strict'; | ||
|
||
const foregroundColor = '#f8f8f2' | ||
const backgroundColor = '#282a36' | ||
const black = '#44475a' | ||
const red = '#ff5555' | ||
const green = '#50fa7b' | ||
const yellow = '#f1fa8c' | ||
const blue = '#c0a8fa' | ||
const magenta = '#ff79c6' | ||
const cyan = '#8be9fd' | ||
const gray = '#666666' | ||
const brightBlack = '#999999' | ||
const brightWhite = '#ffffff' | ||
const backgroundColor = '#282a36'; | ||
const foregroundColor = '#f8f8f2'; | ||
const borderColor = '#44475a'; | ||
const cursorColor = 'f8f8f2'; | ||
const colors = { | ||
black: '#000000', | ||
red: '#ff5555', | ||
green: '#50fa7b', | ||
yellow: '#f1fa8c', | ||
blue: '#bd93f9', | ||
magenta: '#ff79c6', | ||
cyan: '#8be9fd', | ||
white: 'bfbfbf', | ||
lightBlack: '#4d4d4d', | ||
lightRed: '#ff6e67', | ||
lightGreen: '#5af78e', | ||
lightYellow: '#f4f99d', | ||
lightBlue: '#caa9fa', | ||
lightMagenta: '#ff92d0', | ||
lightCyan: '#9aedfe', | ||
lightWhite: '#e6e6e6' | ||
}; | ||
|
||
exports.decorateConfig = config => { | ||
return Object.assign({}, config, { | ||
backgroundColor, | ||
foregroundColor, | ||
borderColor: black, | ||
cursorColor: brightBlack, | ||
colors: { | ||
black, | ||
red, | ||
green, | ||
yellow, | ||
blue, | ||
magenta, | ||
cyan, | ||
gray, | ||
|
||
// bright | ||
brightBlack, | ||
red, | ||
green, | ||
yellow, | ||
blue, | ||
magenta, | ||
cyan, | ||
brightWhite | ||
}, | ||
borderColor, | ||
cursorColor, | ||
colors, | ||
termCSS: ` | ||
${config.termCSS || ''} | ||
`, | ||
css: ` | ||
${config.css || ''} | ||
.tabs_list .tab_tab.tab_active .tab_text { | ||
background: ${backgroundColor}; | ||
} | ||
.tab_active:before { | ||
border-color: rgb(68, 71, 90); | ||
border-color: ${borderColor}; | ||
} | ||
` | ||
}) | ||
} | ||
}); | ||
}; |
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 |
---|---|---|
@@ -1,21 +1,21 @@ | ||
{ | ||
"name": "hyper-dracula", | ||
"version": "0.1.8", | ||
"version": "0.1.9", | ||
"main": "index.js", | ||
"homepage": "https://draculatheme.com/hyper", | ||
"description": "A dark theme for Hyper", | ||
"license": "MIT", | ||
"repository": "dracula/hyper", | ||
"author": { | ||
"name": "Dang Van Thanh", | ||
"email": "[email protected]", | ||
"url": "http://dangthanh.org" | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/dracula/hyper.git" | ||
}, | ||
"files": [ | ||
"index.js" | ||
], | ||
"keywords": [ | ||
"dracula-theme", | ||
"hyperterm", | ||
"hyper", | ||
"hyper-theme", | ||
"hyper-dracula" | ||
] | ||
"hyper.app", | ||
"hyper dracula", | ||
"hyper theme", | ||
"dracula-theme" | ||
], | ||
"author": "Dang Van Thanh <[email protected]>", | ||
"license": "MIT" | ||
} |
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