2022-02-10 16:56:49 -08:00
|
|
|
local onedarkpro = require("onedarkpro")
|
|
|
|
onedarkpro.setup({
|
|
|
|
theme = "onedark",
|
2022-10-27 17:28:20 -07:00
|
|
|
-- colors = {}, -- Override default colors. Can specify colors for "onelight" or "onedark" themes by passing in a table
|
|
|
|
-- hlgroups = {}, -- Override default highlight groups
|
2022-02-10 16:56:49 -08:00
|
|
|
plugins = { -- Override which plugins highlight groups are loaded
|
|
|
|
native_lsp = true,
|
|
|
|
polygot = true,
|
|
|
|
treesitter = true,
|
|
|
|
},
|
|
|
|
styles = {
|
|
|
|
comments = "italic",
|
2022-11-02 22:26:23 -07:00
|
|
|
functions = "italic,bold",
|
2022-03-08 22:49:34 -08:00
|
|
|
keywords = "italic,bold",
|
|
|
|
strings = "NONE",
|
2022-02-10 16:56:49 -08:00
|
|
|
variables = "bold"
|
|
|
|
},
|
|
|
|
options = {
|
|
|
|
bold = true, -- Use the themes opinionated bold styles?
|
|
|
|
italic = true, -- Use the themes opinionated italic styles?
|
2022-11-02 22:26:23 -07:00
|
|
|
underline = true, -- Use the themes opinionated underline styles?
|
2022-02-10 16:56:49 -08:00
|
|
|
undercurl = false, -- Use the themes opinionated undercurl styles?
|
2022-11-02 22:26:23 -07:00
|
|
|
cursorline = true, -- Use cursorline highlighting?
|
2022-02-10 16:56:49 -08:00
|
|
|
transparency = false, -- Use a transparent background?
|
2022-11-02 22:26:23 -07:00
|
|
|
terminal_colors = false, -- Use the theme's colors for Neovim's :terminal?
|
2022-02-10 16:56:49 -08:00
|
|
|
window_unfocussed_color = false, -- When the window is out of focus, change the normal background?
|
|
|
|
}
|
|
|
|
})
|
|
|
|
onedarkpro.load()
|