diff options
-rw-r--r-- | lua/core/colorscheme.lua | 10 |
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]] |