Skip to content

Commit fb4467a

Browse files
committed
fixed readme
1 parent 9e8b3d2 commit fb4467a

File tree

8 files changed

+81
-20
lines changed

8 files changed

+81
-20
lines changed

.idea/.gitignore

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/Project.xml

Lines changed: 21 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/codeStyleConfig.xml

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/solarized.nvim.iml

Lines changed: 9 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 18 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# shaunsingh/solarized.nvim
22

3-
## based off of the [Solarized Light Theme](https://github.com/altercation/vim-colors-solarized) for Vim
3+
## based off of the [Solarized Light Theme](https://github.com/altercation/vim-colors-solarized) for Vim
44

55
## Features
66

@@ -51,7 +51,7 @@ use 'shaunsingh/solarized.nvim'
5151
## Usage
5252

5353
Enable the colorscheme:
54-
```vim
54+
```vim
5555
"Vim-Script:
5656
colorscheme solarized
5757
```
@@ -88,30 +88,28 @@ require('lualine').setup {
8888

8989
```lua
9090
-- Example config in lua
91-
vim.g.moonlight_italic_comments = true
92-
vim.g.moonlight_italic_keywords = true
93-
vim.g.moonlight_italic_functions = true
94-
vim.g.moonlight_italic_variables = false
95-
vim.g.moonlight_contrast = true
96-
vim.g.moonlight_borders = false
97-
vim.g.moonlight_disable_background = false
91+
vim.g.solarized_italic_comments = true
92+
vim.g.solarized_italic_keywords = true
93+
vim.g.solarized_italic_functions = true
94+
vim.g.solarized_italic_variables = false
95+
vim.g.solarized_contrast = true
96+
vim.g.solarized_borders = false
97+
vim.g.solarized_disable_background = false
9898

9999
-- Load the colorscheme
100-
require('moonlight').set()
100+
require('solarized').set()
101101
```
102102

103103
```vim
104104
" Example config in Vim-Script
105-
let g:moonlight_italic_comments = true
106-
let g:moonlight_italic_keywords = true
107-
let g:moonlight_italic_functions = true
108-
let g:moonlight_italic_variables = false
109-
let g:moonlight_contrast = true
110-
let g:moonlight_borders = false
111-
let g:moonlight_disable_background = false
105+
let g:solarized_italic_comments = true
106+
let g:solarized_italic_keywords = true
107+
let g:solarized_italic_functions = true
108+
let g:solarized_italic_variables = false
109+
let g:solarized_contrast = true
110+
let g:solarized_borders = false
111+
let g:solarized_disable_background = false
112112
113113
-- Load the colorsheme
114-
colorscheme moonlight
114+
colorscheme solarized
115115
```
116-
117-

0 commit comments

Comments
 (0)