From a717c95b9930c9772fb7175c92df448d0436abe3 Mon Sep 17 00:00:00 2001 From: TheSast <27977196+TheSast@users.noreply.github.com> Date: Sun, 28 May 2023 17:05:48 +0200 Subject: [PATCH] feat(colorscheme): add 'vscode', 'onedarkpro', 'sonokai' (#242) * chore: add 'optional' where applicable * feat(colorscheme): add 'vscode' * feat(colorscheme): add 'sonokai' * feat(colorscheme): add 'onedarkpro' --- lua/astrocommunity/colorscheme/onedarkpro-nvim/README.md | 7 +++++++ .../colorscheme/onedarkpro-nvim/onedarkpro.lua | 8 ++++++++ lua/astrocommunity/colorscheme/sonokai/README.md | 5 +++++ lua/astrocommunity/colorscheme/sonokai/sonokai.lua | 4 ++++ lua/astrocommunity/colorscheme/vscode-nvim/README.md | 5 +++++ lua/astrocommunity/colorscheme/vscode-nvim/vscode.lua | 1 + 6 files changed, 30 insertions(+) create mode 100644 lua/astrocommunity/colorscheme/onedarkpro-nvim/README.md create mode 100644 lua/astrocommunity/colorscheme/onedarkpro-nvim/onedarkpro.lua create mode 100644 lua/astrocommunity/colorscheme/sonokai/README.md create mode 100644 lua/astrocommunity/colorscheme/sonokai/sonokai.lua create mode 100644 lua/astrocommunity/colorscheme/vscode-nvim/README.md create mode 100644 lua/astrocommunity/colorscheme/vscode-nvim/vscode.lua 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" }