my neovim configuration
1local colorscheme = "catppuccin" 2 3local status_ok, _ = pcall(vim.cmd, "colorscheme " .. colorscheme) 4if not status_ok then 5 vim.notify("colorscheme " .. colorscheme .. " not found") 6 return 7end 8 9require(colorscheme).setup({ 10 flavour = "mocha", 11 transparent_background = true, 12 integrations = { 13 gitsigns=true, 14 treesitter=true, 15 which_key=true, 16 }, 17})