summaryrefslogtreecommitdiff
path: root/.config/nvim/lua
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2021-07-08 16:29:11 +0200
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2021-07-08 16:29:11 +0200
commita16d066ac637ad82c2217ad1cced2e23bb6a5dc9 (patch)
tree888f425f6acf643fe1898883ae0fd68aec4644f7 /.config/nvim/lua
parent56e16603121f94b6ea4b7125c596a09540569841 (diff)
Tinker with colorscheme, purple functions in python
Diffstat (limited to '.config/nvim/lua')
-rw-r--r--.config/nvim/lua/cfg/themes/dark.lua16
1 files changed, 8 insertions, 8 deletions
diff --git a/.config/nvim/lua/cfg/themes/dark.lua b/.config/nvim/lua/cfg/themes/dark.lua
index fe2ff03..935b2be 100644
--- a/.config/nvim/lua/cfg/themes/dark.lua
+++ b/.config/nvim/lua/cfg/themes/dark.lua
@@ -101,23 +101,23 @@ local theme = lush(function()
Float { fg = c.red },
Identifier { fg = c.white },
- Function { fg = c.orange },
+ Function { fg = c.purple },
Operator { fg = c.orange },
- Type { fg = c.blue },
- StorageClass { Type },
- Structure { Type },
- Typedef { Type },
+ Type { fg = c.white },
+ StorageClass { fg = c.yellow },
+ Structure { fg = c.orange },
+ Typedef { fg = c.purple },
- Keyword { fg = c.blue },
+ Keyword { fg = c.orange },
Statement { Keyword },
- Conditional { Keyword },
+ Conditional { Keyword },
Repeat { Keyword },
Label { Keyword },
Exception { Keyword },
Include { Keyword },
- PreProc { fg = c.aqua },
+ PreProc { fg = c.orange },
Define { PreProc },
Macro { PreProc },
PreCondit { PreProc },