1
0
Fork 0
mirror of https://codeberg.org/Mo8it/dotfiles.git synced 2024-10-17 20:52:40 +00:00
dotfiles/.config/nvim/lua/plugins/onedarkpro.lua

20 lines
329 B
Lua

local onedarkpro = require("onedarkpro")
onedarkpro.setup({
theme = "onedark",
colors = {
onedark = {
bg = "#1e1e1e",
color_column = "#1b1b1b", -- For unfocused
},
},
options = {
bold = true,
underline = true,
undercurl = true,
cursorline = true,
window_unfocused_color = true,
},
})
onedarkpro.load()