-
-
Notifications
You must be signed in to change notification settings - Fork 250
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(colorscheme): add 'vscode', 'onedarkpro', 'sonokai' (#242)
* chore: add 'optional' where applicable * feat(colorscheme): add 'vscode' * feat(colorscheme): add 'sonokai' * feat(colorscheme): add 'onedarkpro'
- Loading branch information
Showing
6 changed files
with
30 additions
and
0 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,7 @@ | ||
# onedarkpro.nvim | ||
|
||
**Repository:** <https://github.com/olimorris/onedarkpro.nvim> | ||
|
||
🎨 Atom's iconic One Dark theme, for Neovim. Fully customisable, with Treesitter and LSP semantic token support | ||
|
||
To |
8 changes: 8 additions & 0 deletions
8
lua/astrocommunity/colorscheme/onedarkpro-nvim/onedarkpro.lua
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,8 @@ | ||
return { | ||
"olimorris/onedarkpro.nvim", | ||
opts = { | ||
options = { | ||
highlight_inactive_windows = 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# sonokai | ||
|
||
**Repository:** <https://github.com/sainnhe/sonokai> | ||
|
||
High Contrast & Vivid Color Scheme based on Monokai Pro |
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,4 @@ | ||
return { | ||
"sainnhe/sonokai", | ||
init = function() vim.g.sonokai_dim_inactive_windows = 1 end, | ||
} |
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,5 @@ | ||
# vscode.nvim | ||
|
||
**Repository:** <https://github.com/Mofiqul/vscode.nvim> | ||
|
||
Neovim/Vim color scheme inspired by Dark+ and Light+ theme in Visual Studio Code |
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 @@ | ||
return { "Mofiqul/vscode.nvim" } |