| 1234567891011121314151617181920212223242526272829303132 |
- return {
- {
- "navarasu/onedark.nvim",
- name = "onedark",
- lazy = false,
- priority = 1000,
- config = function()
- require('onedark').setup {
- style = 'dark',
- transparent = true,
- -- Change code style ---
- -- Options are italic, bold, underline, none
- -- You can configure multiple style with comma separated, For e.g., keywords = 'italic,bold'
- code_style = {
- comments = 'italic',
- keywords = 'none',
- functions = 'none',
- strings = 'none',
- variables = 'none'
- },
- -- Lualine options --
- lualine = {
- transparent = false, -- lualine center bar transparency
- },
- }
- require('onedark').load()
- end,
- },
- }
|