fixed readme
This commit is contained in:
8
.idea/.gitignore
generated
vendored
Normal file
8
.idea/.gitignore
generated
vendored
Normal file
@@ -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/
|
||||
21
.idea/codeStyles/Project.xml
generated
Normal file
21
.idea/codeStyles/Project.xml
generated
Normal file
@@ -0,0 +1,21 @@
|
||||
<component name="ProjectCodeStyleConfiguration">
|
||||
<code_scheme name="Project" version="173">
|
||||
<JetCodeStyleSettings>
|
||||
<option name="CODE_STYLE_DEFAULTS" value="KOTLIN_OFFICIAL" />
|
||||
</JetCodeStyleSettings>
|
||||
<ScalaCodeStyleSettings>
|
||||
<option name="MULTILINE_STRING_CLOSING_QUOTES_ON_NEW_LINE" value="true" />
|
||||
</ScalaCodeStyleSettings>
|
||||
<codeStyleSettings language="kotlin">
|
||||
<option name="CALL_PARAMETERS_WRAP" value="5" />
|
||||
<option name="CALL_PARAMETERS_LPAREN_ON_NEXT_LINE" value="true" />
|
||||
<option name="CALL_PARAMETERS_RPAREN_ON_NEXT_LINE" value="true" />
|
||||
<option name="METHOD_PARAMETERS_WRAP" value="5" />
|
||||
<option name="METHOD_PARAMETERS_LPAREN_ON_NEXT_LINE" value="true" />
|
||||
<option name="METHOD_PARAMETERS_RPAREN_ON_NEXT_LINE" value="true" />
|
||||
<option name="EXTENDS_LIST_WRAP" value="1" />
|
||||
<option name="METHOD_CALL_CHAIN_WRAP" value="1" />
|
||||
<option name="ASSIGNMENT_WRAP" value="1" />
|
||||
</codeStyleSettings>
|
||||
</code_scheme>
|
||||
</component>
|
||||
5
.idea/codeStyles/codeStyleConfig.xml
generated
Normal file
5
.idea/codeStyles/codeStyleConfig.xml
generated
Normal file
@@ -0,0 +1,5 @@
|
||||
<component name="ProjectCodeStyleConfiguration">
|
||||
<state>
|
||||
<option name="PREFERRED_PROJECT_CODE_STYLE" value="Default" />
|
||||
</state>
|
||||
</component>
|
||||
6
.idea/misc.xml
generated
Normal file
6
.idea/misc.xml
generated
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectRootManager">
|
||||
<output url="file://$PROJECT_DIR$/out" />
|
||||
</component>
|
||||
</project>
|
||||
8
.idea/modules.xml
generated
Normal file
8
.idea/modules.xml
generated
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectModuleManager">
|
||||
<modules>
|
||||
<module fileurl="file://$PROJECT_DIR$/.idea/solarized.nvim.iml" filepath="$PROJECT_DIR$/.idea/solarized.nvim.iml" />
|
||||
</modules>
|
||||
</component>
|
||||
</project>
|
||||
9
.idea/solarized.nvim.iml
generated
Normal file
9
.idea/solarized.nvim.iml
generated
Normal file
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module type="JAVA_MODULE" version="4">
|
||||
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
||||
<exclude-output />
|
||||
<content url="file://$MODULE_DIR$" />
|
||||
<orderEntry type="inheritedJdk" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
</component>
|
||||
</module>
|
||||
6
.idea/vcs.xml
generated
Normal file
6
.idea/vcs.xml
generated
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="" vcs="Git" />
|
||||
</component>
|
||||
</project>
|
||||
38
README.md
38
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
|
||||
```
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user