# Adding a theme 2 phases, first add it to nvim, them add it to telescope. ## nvim Theme are lazy loaded. To add a theme, add it in the theme directory with this stucture: ```lua return { "", lazy = true, config = function(opts) require("").setup() vim.cmd.colorscheme("material") end, } ``` ## telescope.nvim Now, in the file telescope.lua, add the colorscheme name in the picker list. So with cc, you can pick it.