Skip to content

Commit

Permalink
feat(colorscheme): add 'vscode', 'onedarkpro', 'sonokai' (#242)
Browse files Browse the repository at this point in the history
* chore: add 'optional' where applicable

* feat(colorscheme): add 'vscode'

* feat(colorscheme): add 'sonokai'

* feat(colorscheme): add 'onedarkpro'
  • Loading branch information
TheSast committed May 28, 2023
1 parent 8b49fbb commit a717c95
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 0 deletions.
7 changes: 7 additions & 0 deletions lua/astrocommunity/colorscheme/onedarkpro-nvim/README.md
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 lua/astrocommunity/colorscheme/onedarkpro-nvim/onedarkpro.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
return {
"olimorris/onedarkpro.nvim",
opts = {
options = {
highlight_inactive_windows = true,
},
},
}
5 changes: 5 additions & 0 deletions lua/astrocommunity/colorscheme/sonokai/README.md
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
4 changes: 4 additions & 0 deletions lua/astrocommunity/colorscheme/sonokai/sonokai.lua
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,
}
5 changes: 5 additions & 0 deletions lua/astrocommunity/colorscheme/vscode-nvim/README.md
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
1 change: 1 addition & 0 deletions lua/astrocommunity/colorscheme/vscode-nvim/vscode.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
return { "Mofiqul/vscode.nvim" }

0 comments on commit a717c95

Please sign in to comment.