diff --git a/.idea/.gitignore b/.idea/.gitignore
new file mode 100644
index 0000000..73f69e0
--- /dev/null
+++ b/.idea/.gitignore
@@ -0,0 +1,8 @@
+# Default ignored files
+/shelf/
+/workspace.xml
+# Datasource local storage ignored files
+/dataSources/
+/dataSources.local.xml
+# Editor-based HTTP Client requests
+/httpRequests/
diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml
new file mode 100644
index 0000000..b2c9153
--- /dev/null
+++ b/.idea/codeStyles/Project.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml
new file mode 100644
index 0000000..a55e7a1
--- /dev/null
+++ b/.idea/codeStyles/codeStyleConfig.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
new file mode 100644
index 0000000..639900d
--- /dev/null
+++ b/.idea/misc.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/modules.xml b/.idea/modules.xml
new file mode 100644
index 0000000..f6880f9
--- /dev/null
+++ b/.idea/modules.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/solarized.nvim.iml b/.idea/solarized.nvim.iml
new file mode 100644
index 0000000..d6ebd48
--- /dev/null
+++ b/.idea/solarized.nvim.iml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100644
index 0000000..35eb1dd
--- /dev/null
+++ b/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/README.md b/README.md
index 4be0d5c..de6e3ab 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
# shaunsingh/solarized.nvim
-## based off of the [Solarized Light Theme](https://github.com/altercation/vim-colors-solarized) for Vim
+## based off of the [Solarized Light Theme](https://github.com/altercation/vim-colors-solarized) for Vim
## Features
@@ -51,7 +51,7 @@ use 'shaunsingh/solarized.nvim'
## Usage
Enable the colorscheme:
-```vim
+```vim
"Vim-Script:
colorscheme solarized
```
@@ -88,30 +88,28 @@ require('lualine').setup {
```lua
-- Example config in lua
-vim.g.moonlight_italic_comments = true
-vim.g.moonlight_italic_keywords = true
-vim.g.moonlight_italic_functions = true
-vim.g.moonlight_italic_variables = false
-vim.g.moonlight_contrast = true
-vim.g.moonlight_borders = false
-vim.g.moonlight_disable_background = false
+vim.g.solarized_italic_comments = true
+vim.g.solarized_italic_keywords = true
+vim.g.solarized_italic_functions = true
+vim.g.solarized_italic_variables = false
+vim.g.solarized_contrast = true
+vim.g.solarized_borders = false
+vim.g.solarized_disable_background = false
-- Load the colorscheme
-require('moonlight').set()
+require('solarized').set()
```
```vim
" Example config in Vim-Script
-let g:moonlight_italic_comments = true
-let g:moonlight_italic_keywords = true
-let g:moonlight_italic_functions = true
-let g:moonlight_italic_variables = false
-let g:moonlight_contrast = true
-let g:moonlight_borders = false
-let g:moonlight_disable_background = false
+let g:solarized_italic_comments = true
+let g:solarized_italic_keywords = true
+let g:solarized_italic_functions = true
+let g:solarized_italic_variables = false
+let g:solarized_contrast = true
+let g:solarized_borders = false
+let g:solarized_disable_background = false
-- Load the colorsheme
-colorscheme moonlight
+colorscheme solarized
```
-
-