1- # 🌘 shaunsingh/moonlight .nvim
1+ # 🌘 shaunsingh/solarized .nvim
22
3- ## Modified version of Marko Cerovac's [ Material.nvim] ( https://github.com/marko-cerovac/material.nvim ) , based off of the [ Moonlight Theme] ( https://github.com/atomiks/moonlight-vscode-theme ) for VSCode
4-
5- ![ preview github] ( https://user-images.githubusercontent.com/71196912/118175481-27755c80-b3fe-11eb-9d70-85a9f936c33d.png )
3+ ## based off of the [ Solarized Light Theme] ( https://github.com/altercation/vim-colors-solarized ) for Vim
64
75## 🌠 Features
86
9- moonlight .nvim is meant to be a modern colorscheme written in lua for NeoVim that supports a lot of the new features
7+ solarized .nvim is meant to be a modern colorscheme written in lua for NeoVim that supports a lot of the new features
108added to NeoVim like built-in LSP and [ TreeSitter] ( https://github.com/nvim-treesitter/nvim-treesitter )
119
1210+ Supported plugins:
@@ -42,34 +40,34 @@ added to NeoVim like built-in LSP and [TreeSitter](https://github.com/nvim-trees
4240Install via your favourite package manager:
4341``` vim
4442" If you are using Vim-Plug
45- Plug 'shaunsingh/moonlight .nvim'
43+ Plug 'shaunsingh/solarized .nvim'
4644```
4745
4846``` lua
4947-- If you are using Packer
50- use ' shaunsingh/moonlight .nvim'
48+ use ' shaunsingh/solarized .nvim'
5149```
5250
5351## 🌓 Usage
5452
5553Enable the colorscheme:
5654``` vim
5755"Vim-Script:
58- colorscheme moonlight
56+ colorscheme solarized
5957```
6058
6159``` lua
6260-- Lua:
63- require (' moonlight ' ).set ()
61+ require (' solarized ' ).set ()
6462```
6563
66- To enable the ` moonlight ` theme for ` Lualine ` , simply specify it in your lualine settings:
64+ To enable the ` solarized ` theme for ` Lualine ` , simply specify it in your lualine settings:
6765
6866``` lua
6967require (' lualine' ).setup {
7068 options = {
7169 -- ... your lualine config
72- theme = ' moonlight '
70+ theme = ' solarized '
7371 -- ... your lualine config
7472 }
7573}
@@ -80,13 +78,13 @@ require('lualine').setup {
8078
8179| Option | Default | Description |
8280| ----------------------------------- | ----------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------- |
83- | moonlight_italic_comments | ` false ` | Make comments italic |
84- | moonlight_italic_keywords | ` false ` | Make keywords italic |
85- | moonlight_italic_functions | ` false ` | Make functions italic |
86- | moonlight_italic_variables | ` false ` | Make variables and identifiers italic |
87- | moonlight_contrast | ` true ` | Make sidebars and popup menus like nvim-tree and telescope have a different background |
88- | moonlight_borders | ` false ` | Enable the border between verticaly split windows visable
89- | moonlight_disable_background | ` false ` | Disable the setting of background color so that NeoVim can use your terminal background
81+ | solarized_italic_comments | ` false ` | Make comments italic |
82+ | solarized_italic_keywords | ` false ` | Make keywords italic |
83+ | solarized_italic_functions | ` false ` | Make functions italic |
84+ | solarized_italic_variables | ` false ` | Make variables and identifiers italic |
85+ | solarized_contrast | ` true ` | Make sidebars and popup menus like nvim-tree and telescope have a different background |
86+ | solarized_borders | ` false ` | Enable the border between verticaly split windows visable
87+ | solarized_disable_background | ` false ` | Disable the setting of background color so that NeoVim can use your terminal background
9088
9189``` lua
9290-- Example config in lua
0 commit comments