20 lines
508 B
Lua
20 lines
508 B
Lua
return {
|
|
"navarasu/onedark.nvim",
|
|
lazy = false,
|
|
config = function()
|
|
require("onedark").setup {
|
|
style = "darker", -- Default theme style. Choose between 'dark', 'darker', 'cool', 'deep', 'warm', 'warmer' and 'light'
|
|
toggle_style_key = "<leader>ss",
|
|
transparent = false, -- Show/hide background
|
|
|
|
code_style = {
|
|
comments = "italic",
|
|
keywords = "italic,",
|
|
functions = "bold",
|
|
strings = "none",
|
|
variables = "none",
|
|
},
|
|
}
|
|
end,
|
|
}
|