feat: pick theme with telescope

This commit is contained in:
Stevan Freeborn
2025-01-18 00:15:54 -06:00
parent 38905222ca
commit 075e78c9ce
11 changed files with 97 additions and 45 deletions
+6 -5
View File
@@ -1,13 +1,14 @@
return {
"nvim-treesitter/nvim-treesitter",
return {
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function()
local config = require("nvim-treesitter.configs")
config.setup({
auto_install = true,
indent = { enabled = true },
highlight = { enabled = true }
highlight = { enabled = true },
})
end
end,
}