rice/nvim/plugin-confs/onedarkpro.lua

30 lines
1.1 KiB
Lua
Raw Normal View History

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",
functions = "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?
underline = false, -- Use the themes opinionated underline styles?
undercurl = false, -- Use the themes opinionated undercurl styles?
cursorline = false, -- Use cursorline highlighting?
transparency = false, -- Use a transparent background?
terminal_colors = true, -- Use the theme's colors for Neovim's :terminal?
window_unfocussed_color = false, -- When the window is out of focus, change the normal background?
}
})
onedarkpro.load()