mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-22 12:31:04 +00:00
67 lines
1.6 KiB
Lua
67 lines
1.6 KiB
Lua
return {
|
|
{
|
|
"folke/tokyonight.nvim",
|
|
opts = {
|
|
transparent = true,
|
|
style = "night",
|
|
styles = {
|
|
sidebars = "transparent",
|
|
floats = "transparent",
|
|
comments = { italic = true },
|
|
keywords = { italic = true },
|
|
},
|
|
on_highlights = function(hl, colors)
|
|
hl.LineNr = { bg = "none", fg = "#999999" }
|
|
hl.CursorLineNr = { fg = "#ffffff" }
|
|
end,
|
|
opts = {
|
|
integrations = {
|
|
aerial = true,
|
|
alpha = true,
|
|
cmp = true,
|
|
dashboard = true,
|
|
flash = true,
|
|
grug_far = true,
|
|
gitsigns = true,
|
|
headlines = true,
|
|
illuminate = true,
|
|
indent_blankline = { enabled = true },
|
|
leap = true,
|
|
lsp_trouble = true,
|
|
mason = true,
|
|
markdown = true,
|
|
mini = true,
|
|
native_lsp = {
|
|
enabled = true,
|
|
underlines = {
|
|
errors = { "undercurl" },
|
|
hints = { "undercurl" },
|
|
warnings = { "undercurl" },
|
|
information = { "undercurl" },
|
|
},
|
|
},
|
|
navic = { enabled = true, custom_bg = "lualine" },
|
|
neotest = true,
|
|
neotree = true,
|
|
noice = true,
|
|
notify = true,
|
|
semantic_tokens = true,
|
|
telescope = true,
|
|
treesitter = true,
|
|
treesitter_context = true,
|
|
which_key = true,
|
|
},
|
|
transparent_background = true,
|
|
},
|
|
},
|
|
},
|
|
{
|
|
"Mofiqul/vscode.nvim",
|
|
},
|
|
{
|
|
"LazyVim/LazyVim",
|
|
opts = {
|
|
colorscheme = "catppuccin",
|
|
},
|
|
},
|
|
}
|