added custom settings for one dark theme

This commit is contained in:
Micah Effiong 2023-06-06 11:48:05 +01:00
parent 5e4d24cb2f
commit a0d2b224cd
1 changed files with 13 additions and 0 deletions

View File

@ -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 = '<leader>ts', -- keybind to toggle theme style. Leave it nil to disable it, or set it to a string, for example "<leader>ts"
toggle_style_list = {'dark', 'darker', 'cool', 'deep', 'warm', 'warmer', 'light'},
}
}