From a0d2b224cdb057a72bbb87de2c2a48a31afcf34e Mon Sep 17 00:00:00 2001 From: Micah Effiong Date: Tue, 6 Jun 2023 11:48:05 +0100 Subject: [PATCH] added custom settings for one dark theme --- lua/custom/plugins/onedark-theme.lua | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 lua/custom/plugins/onedark-theme.lua diff --git a/lua/custom/plugins/onedark-theme.lua b/lua/custom/plugins/onedark-theme.lua new file mode 100644 index 00000000..5778343a --- /dev/null +++ b/lua/custom/plugins/onedark-theme.lua @@ -0,0 +1,13 @@ +return { + -- Theme inspired by Atom + 'navarasu/onedark.nvim', + priority = 1000, + config = function() + vim.cmd.colorscheme 'onedark' + end, + require('onedark').setup { + style = 'deep', + 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'}, + } +}