summaryrefslogtreecommitdiff
path: root/lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua')
-rw-r--r--lua/user/colorscheme.lua3
1 files changed, 1 insertions, 2 deletions
diff --git a/lua/user/colorscheme.lua b/lua/user/colorscheme.lua
index aa22bf0..631ad35 100644
--- a/lua/user/colorscheme.lua
+++ b/lua/user/colorscheme.lua
@@ -1,11 +1,10 @@
local gui = false -- set to true if guicolors should be on by default
-vim.g.material_style = "darker"
local function colorscheme_set()
local colorscheme = "legacy_slate"
if gui then
- colorscheme = "material"
+ colorscheme = "slate"
end
local status_ok, _ = pcall(vim.cmd, "colorscheme " .. colorscheme)