fixed readme

This commit is contained in:
shaunsingh
2021-06-01 13:58:17 -04:00
parent 9e8b3d2aa9
commit fb4467a833
8 changed files with 81 additions and 20 deletions

8
.idea/.gitignore generated vendored Normal file
View 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
View 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
View 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
View 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
View 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
View 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
View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="" vcs="Git" />
</component>
</project>

View File

@@ -88,30 +88,28 @@ require('lualine').setup {
```lua ```lua
-- Example config in lua -- Example config in lua
vim.g.moonlight_italic_comments = true vim.g.solarized_italic_comments = true
vim.g.moonlight_italic_keywords = true vim.g.solarized_italic_keywords = true
vim.g.moonlight_italic_functions = true vim.g.solarized_italic_functions = true
vim.g.moonlight_italic_variables = false vim.g.solarized_italic_variables = false
vim.g.moonlight_contrast = true vim.g.solarized_contrast = true
vim.g.moonlight_borders = false vim.g.solarized_borders = false
vim.g.moonlight_disable_background = false vim.g.solarized_disable_background = false
-- Load the colorscheme -- Load the colorscheme
require('moonlight').set() require('solarized').set()
``` ```
```vim ```vim
" Example config in Vim-Script " Example config in Vim-Script
let g:moonlight_italic_comments = true let g:solarized_italic_comments = true
let g:moonlight_italic_keywords = true let g:solarized_italic_keywords = true
let g:moonlight_italic_functions = true let g:solarized_italic_functions = true
let g:moonlight_italic_variables = false let g:solarized_italic_variables = false
let g:moonlight_contrast = true let g:solarized_contrast = true
let g:moonlight_borders = false let g:solarized_borders = false
let g:moonlight_disable_background = false let g:solarized_disable_background = false
-- Load the colorsheme -- Load the colorsheme
colorscheme moonlight colorscheme solarized
``` ```