Updated config
This commit is contained in:
parent
57486c10d7
commit
ab6b2b1850
15 changed files with 63 additions and 79 deletions
19
.config/nvim/lua/plugins/onedark.lua
Normal file
19
.config/nvim/lua/plugins/onedark.lua
Normal file
|
@ -0,0 +1,19 @@
|
|||
return {
|
||||
"navarasu/onedark.nvim",
|
||||
lazy = false,
|
||||
priority = 1000,
|
||||
opts = {
|
||||
style = "dark",
|
||||
transparent = true,
|
||||
term_colors = true,
|
||||
highlights = {
|
||||
["StatusLine"] = {fg = "$bg3", bg = "Normal"},
|
||||
["StatusLineNC"] = {fg = "$bg3", bg = "Normal"},
|
||||
},
|
||||
},
|
||||
config = function(_, opts)
|
||||
local theme = require("onedark")
|
||||
theme.setup(opts)
|
||||
theme.load()
|
||||
end,
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue