Configure onedarkpro.nvim via setup()
mainUse require("onedarkpro").setup({...}) to customize the theme. You only need to call this function if you wish to change the default settings. The configuration object supports overriding colors, highlights, styles, filetypes, plugins, and options.
require("onedarkpro").setup({
colors = {},
highlights = {},
styles = {
types = "NONE",
-- ... other style keys
},
filetypes = {
lua = true,
-- ... other filetype keys
},
plugins = {
nvim_lsp = true,
-- ... other plugin keys
},
options = {
cursorline = false,
transparency = false,
terminal_colors = true,
lualine_transparency = false,
highlight_inactive_windows = false,
}
})