diff --git a/lua/astrocommunity/colorscheme/onedarkpro-nvim/README.md b/lua/astrocommunity/colorscheme/onedarkpro-nvim/README.md new file mode 100644 index 000000000..a79ef7dac --- /dev/null +++ b/lua/astrocommunity/colorscheme/onedarkpro-nvim/README.md @@ -0,0 +1,7 @@ +# onedarkpro.nvim + +**Repository:** + +🎨 Atom's iconic One Dark theme, for Neovim. Fully customisable, with Treesitter and LSP semantic token support + +To diff --git a/lua/astrocommunity/colorscheme/onedarkpro-nvim/onedarkpro.lua b/lua/astrocommunity/colorscheme/onedarkpro-nvim/onedarkpro.lua new file mode 100644 index 000000000..98e8dd8ef --- /dev/null +++ b/lua/astrocommunity/colorscheme/onedarkpro-nvim/onedarkpro.lua @@ -0,0 +1,8 @@ +return { + "olimorris/onedarkpro.nvim", + opts = { + options = { + highlight_inactive_windows = true, + }, + }, +} diff --git a/lua/astrocommunity/colorscheme/sonokai/README.md b/lua/astrocommunity/colorscheme/sonokai/README.md new file mode 100644 index 000000000..61d371765 --- /dev/null +++ b/lua/astrocommunity/colorscheme/sonokai/README.md @@ -0,0 +1,5 @@ +# sonokai + +**Repository:** + +High Contrast & Vivid Color Scheme based on Monokai Pro diff --git a/lua/astrocommunity/colorscheme/sonokai/sonokai.lua b/lua/astrocommunity/colorscheme/sonokai/sonokai.lua new file mode 100644 index 000000000..7b6d1f5dc --- /dev/null +++ b/lua/astrocommunity/colorscheme/sonokai/sonokai.lua @@ -0,0 +1,4 @@ +return { + "sainnhe/sonokai", + init = function() vim.g.sonokai_dim_inactive_windows = 1 end, +} diff --git a/lua/astrocommunity/colorscheme/vscode-nvim/README.md b/lua/astrocommunity/colorscheme/vscode-nvim/README.md new file mode 100644 index 000000000..991254387 --- /dev/null +++ b/lua/astrocommunity/colorscheme/vscode-nvim/README.md @@ -0,0 +1,5 @@ +# vscode.nvim + +**Repository:** + +Neovim/Vim color scheme inspired by Dark+ and Light+ theme in Visual Studio Code diff --git a/lua/astrocommunity/colorscheme/vscode-nvim/vscode.lua b/lua/astrocommunity/colorscheme/vscode-nvim/vscode.lua new file mode 100644 index 000000000..0e2709be8 --- /dev/null +++ b/lua/astrocommunity/colorscheme/vscode-nvim/vscode.lua @@ -0,0 +1 @@ +return { "Mofiqul/vscode.nvim" }