diff options
author | Louie Shprung <lshprung@scu.edu> | 2023-02-16 09:08:03 -0800 |
---|---|---|
committer | Louie Shprung <lshprung@scu.edu> | 2023-02-16 09:08:03 -0800 |
commit | a393feb16bd85c7d0643f756375c0540ca73834b (patch) | |
tree | 2f7588221fe7f51926aa217b8c2a34367ccacbbe /lua | |
parent | 71c669c177bd70385501a0e119f90b4f423a86c9 (diff) |
Remove material colorscheme
Diffstat (limited to 'lua')
-rw-r--r-- | lua/user/colorscheme.lua | 3 |
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) |