summaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
authorlistout <listout@protonmail.com>2022-09-01 16:10:32 +0530
committerlistout <listout@protonmail.com>2022-09-01 16:26:46 +0530
commit0f7f546630b59a8895016fc1c379140369e0f0c6 (patch)
tree7aa04eb05c0fa44a8b5ece8e4f390a4204b292f7 /lua
parenteb52a9e29a4d3250f730b6e70ef9a7a10d9e943e (diff)
nvim: colorscheme: tokyonight color scheme
Signed-off-by: listout <listout@protonmail.com>
Diffstat (limited to 'lua')
-rw-r--r--lua/core/colorscheme.lua10
1 files changed, 9 insertions, 1 deletions
diff --git a/lua/core/colorscheme.lua b/lua/core/colorscheme.lua
index 7c8fbb6..6294d48 100644
--- a/lua/core/colorscheme.lua
+++ b/lua/core/colorscheme.lua
@@ -1,3 +1,11 @@
-- Config in lua
+vim.g.tokyonight_style = "storm"
+vim.g.tokyonight_italic_functions = true
+vim.g.tokyonight_sidebars = { "qf", "vista_kind", "terminal", "packer" }
+vim.g.tokyonight_italic_functions = true
+
+-- Change the "hint" color to the "orange" color, and make the "error" color bright red
+vim.g.tokyonight_colors = { hint = "orange", error = "#ff0000" }
+
-- Load the colorscheme
-vim.cmd[[colorscheme substrata]]
+vim.cmd[[colorscheme tokyonight]]