diff --git a/lua/custom/plugins/onedark-theme.lua b/lua/custom/plugins/onedark-theme.lua index 5778343a..edc5cb5a 100644 --- a/lua/custom/plugins/onedark-theme.lua +++ b/lua/custom/plugins/onedark-theme.lua @@ -6,8 +6,8 @@ return { vim.cmd.colorscheme 'onedark' end, require('onedark').setup { - style = 'deep', + style = 'darker', toggle_style_key = 'ts', -- keybind to toggle theme style. Leave it nil to disable it, or set it to a string, for example "ts" - toggle_style_list = {'dark', 'darker', 'cool', 'deep', 'warm', 'warmer', 'light'}, + toggle_style_list = { 'dark', 'darker', 'cool', 'deep', 'warm', 'warmer', 'light' }, } }