Skip to content

Commit

Permalink
feat(colorscheme): add multiple color schemes (#922)
Browse files Browse the repository at this point in the history
* feat(colorscheme): add cyberdream and dogrun

* feat(colorscheme): add night-owl as well

* feat(colorscheme): add tokyodark and miasma

* feat(colorscheme): add mellifluous

* fix(colorscheme): move dogrun-nvim to correct vim-dogrun folder
  • Loading branch information
0xricksanchez committed Apr 29, 2024
1 parent c0718c8 commit 6bedf02
Show file tree
Hide file tree
Showing 12 changed files with 75 additions and 0 deletions.
10 changes: 10 additions & 0 deletions lua/astrocommunity/colorscheme/cyberdream-nvim/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# cyberdream.nvim

🤖💤 High-contrast, Futuristic & Vibrant color scheme for Neovim

**Repository:** <https://github.com/scottmckendry/cyberdream.nvim>

```vim
" Vim Script
colorscheme cyberdream
```
10 changes: 10 additions & 0 deletions lua/astrocommunity/colorscheme/cyberdream-nvim/init.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
return {
"scottmckendry/cyberdream.nvim",
opts = {
transparent = true,
italic_comments = true,
hide_fillchars = true,
borderless_telescope = true,
terminal_colors = true,
},
}
10 changes: 10 additions & 0 deletions lua/astrocommunity/colorscheme/mellifluous-nvim/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# mellifluous.nvim

Pleasant and productive color scheme for Neovim

**Repository:** <https://github.com/ramojus/mellifluous.nvim>

```vim
" Vim Script
colorscheme mellifluous
```
1 change: 1 addition & 0 deletions lua/astrocommunity/colorscheme/mellifluous-nvim/init.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
return { "ramojus/mellifluous.nvim" }
10 changes: 10 additions & 0 deletions lua/astrocommunity/colorscheme/miasma-nvim/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# miasma.nvim

A fog descends upon your editor ☁ dark color scheme inspired by the woods for vim and neovim

**Repository:** <https://github.com/xero/miasma.nvim>

```vim
" Vim Script
colorscheme miasma
```
1 change: 1 addition & 0 deletions lua/astrocommunity/colorscheme/miasma-nvim/init.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
return { "xero/miasma.nvim" }
10 changes: 10 additions & 0 deletions lua/astrocommunity/colorscheme/night-owl-nvim/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# night-owl.nvim

🦉 🌌 Night Owl colorscheme implementation for Neovim with support for Treesitter and semantic tokens

**Repository:** <https://github.com/oxfist/night-owl.nvim>

```vim
" Vim Script
colorscheme night-owl
```
1 change: 1 addition & 0 deletions lua/astrocommunity/colorscheme/night-owl-nvim/init.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
return { "oxfist/night-owl.nvim" }
10 changes: 10 additions & 0 deletions lua/astrocommunity/colorscheme/tokyodark-nvim/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# tokyodark.nvim

A clean dark theme written in lua for neovim.

**Repository:** <https://github.com/tiagovla/tokyodark.nvim>

```vim
" Vim Script
colorscheme tokyodark
```
1 change: 1 addition & 0 deletions lua/astrocommunity/colorscheme/tokyodark-nvim/init.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
return { "tiagovla/tokyodark.nvim" }
10 changes: 10 additions & 0 deletions lua/astrocommunity/colorscheme/vim-dogrun/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# vim-dogrun

🐶 A dark Neovim / Vim colorscheme for the GUI and 256 / true-color terminals.

**Repository:** <https://github.com/wadackel/vim-dogrun>

```vim
" Vim Script
colorscheme dogrun
```
1 change: 1 addition & 0 deletions lua/astrocommunity/colorscheme/vim-dogrun/init.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
return { "wadackel/vim-dogrun" }

0 comments on commit 6bedf02

Please sign in to comment.