-
Notifications
You must be signed in to change notification settings - Fork 0
/
onedarkpro.lua
29 lines (29 loc) · 1.14 KB
/
onedarkpro.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
local onedarkpro = require("onedarkpro")
onedarkpro.setup({
theme = "onedark",
-- colors = {}, -- Override default colors. Can specify colors for "onelight" or "onedark" themes by passing in a table
-- hlgroups = {}, -- Override default highlight groups
plugins = { -- Override which plugins highlight groups are loaded
native_lsp = true,
polygot = true,
treesitter = true,
},
styles = {
comments = "italic",
functions = "italic,bold",
keywords = "italic,bold",
strings = "NONE",
variables = "bold"
},
options = {
bold = true, -- Use the themes opinionated bold styles?
italic = true, -- Use the themes opinionated italic styles?
underline = true, -- Use the themes opinionated underline styles?
undercurl = false, -- Use the themes opinionated undercurl styles?
cursorline = true, -- Use cursorline highlighting?
transparency = false, -- Use a transparent background?
terminal_colors = false, -- 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()