31 lines
847 B
Lua
31 lines
847 B
Lua
--vim.cmd [[colorscheme catppuccin]]
|
|
|
|
--TokyonNight
|
|
--local colorscheme = "tokyonight-night"
|
|
|
|
--Catppuccin
|
|
vim.g.catppuccin_flavour = "mocha" -- latte, frappe, macchiato, mocha
|
|
local colorscheme = "catppuccin"
|
|
require("catppuccin").setup({
|
|
-- integrations = {
|
|
-- treesitter_context = true,
|
|
-- fidget = false,
|
|
-- },
|
|
custom_highlights = function(colors)
|
|
return {
|
|
TreesitterContext = { bg = colors.mantle },
|
|
TreesitterContextLineNumber = { bg = colors.mantle },
|
|
TreesitterContextBottom = { style = { "underline" } },
|
|
MultiCursor = { bg = colors.red },
|
|
VM_Cursor = { bg = colors.red },
|
|
}
|
|
end
|
|
})
|
|
|
|
--DarkPlus
|
|
--local colorscheme = "darkplus"
|
|
|
|
local status_ok, _ = pcall(vim.cmd, "colorscheme " .. colorscheme)
|
|
if not status_ok then
|
|
return
|
|
end
|