Merge pull request #5 from micaiah-effiong/fix/duplicate-ondark-config

Fix: duplicate onedark config
This commit is contained in:
Micah Effiong 2024-01-10 15:07:12 +01:00 committed by GitHub
commit 3abd3a9112
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 7 deletions

View File

@ -1,13 +1,10 @@
return {
-- Theme inspired by Atom
'navarasu/onedark.nvim',
priority = 1000,
config = function()
vim.cmd.colorscheme 'onedark'
end,
-- Extend onedark config
-- prevent override conflict
--
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'},
toggle_style_list = { 'dark', 'darker', 'cool', 'deep', 'warm', 'warmer', 'light' },
}
}