-
-
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 multiple color schemes (#922)
* 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
1 parent
c0718c8
commit 6bedf02
Showing
12 changed files
with
75 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,10 @@ | ||
# cyberdream.nvim | ||
|
||
🤖💤 High-contrast, Futuristic & Vibrant color scheme for Neovim | ||
|
||
**Repository:** <https://github.com/scottmckendry/cyberdream.nvim> | ||
|
||
```vim | ||
" Vim Script | ||
colorscheme cyberdream | ||
``` |
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,10 @@ | ||
return { | ||
"scottmckendry/cyberdream.nvim", | ||
opts = { | ||
transparent = true, | ||
italic_comments = true, | ||
hide_fillchars = true, | ||
borderless_telescope = true, | ||
terminal_colors = 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,10 @@ | ||
# mellifluous.nvim | ||
|
||
Pleasant and productive color scheme for Neovim | ||
|
||
**Repository:** <https://github.com/ramojus/mellifluous.nvim> | ||
|
||
```vim | ||
" Vim Script | ||
colorscheme mellifluous | ||
``` |
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 { "ramojus/mellifluous.nvim" } |
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,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 | ||
``` |
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 { "xero/miasma.nvim" } |
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,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 | ||
``` |
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 { "oxfist/night-owl.nvim" } |
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,10 @@ | ||
# tokyodark.nvim | ||
|
||
A clean dark theme written in lua for neovim. | ||
|
||
**Repository:** <https://github.com/tiagovla/tokyodark.nvim> | ||
|
||
```vim | ||
" Vim Script | ||
colorscheme tokyodark | ||
``` |
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 { "tiagovla/tokyodark.nvim" } |
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,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 | ||
``` |
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 { "wadackel/vim-dogrun" } |