42 lines
877 B
Lua
42 lines
877 B
Lua
|
local M = {
|
||
|
flavour = "macchiato",
|
||
|
term_colors = true,
|
||
|
transparent_background = true,
|
||
|
integrations = {
|
||
|
barbar = true,
|
||
|
barbecue = {
|
||
|
dim_dirname = true,
|
||
|
},
|
||
|
dashboard = true,
|
||
|
gitsigns = true,
|
||
|
hop = true,
|
||
|
indent_blankline = {
|
||
|
enabled = true,
|
||
|
colored_indent_levels = true,
|
||
|
},
|
||
|
cmp = true,
|
||
|
mason = true,
|
||
|
native_lsp = {
|
||
|
enabled = true,
|
||
|
},
|
||
|
neogit = true,
|
||
|
notify = true,
|
||
|
nvimtree = true,
|
||
|
navic = {
|
||
|
enabled = false,
|
||
|
custom_bg = "NONE",
|
||
|
},
|
||
|
treesitter = true,
|
||
|
treesitter_context = true,
|
||
|
telescope = true,
|
||
|
lsp_trouble = true,
|
||
|
which_key = true,
|
||
|
},
|
||
|
}
|
||
|
|
||
|
if vim.g.neovide then
|
||
|
M.transparent_background = false
|
||
|
end
|
||
|
|
||
|
return M
|