summaryrefslogtreecommitdiff
path: root/lua/plugins/colorscheme.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/plugins/colorscheme.lua')
-rw-r--r--lua/plugins/colorscheme.lua85
1 files changed, 42 insertions, 43 deletions
diff --git a/lua/plugins/colorscheme.lua b/lua/plugins/colorscheme.lua
index 60e4fbf..0a2e1f7 100644
--- a/lua/plugins/colorscheme.lua
+++ b/lua/plugins/colorscheme.lua
@@ -1,49 +1,48 @@
return {
+ {
+ "nvim-treesitter/nvim-treesitter",
+ build = ":TSUpdate",
+ config = function()
+ local configs = require("nvim-treesitter.configs")
+ ---@diagnostic disable-next-line: missing-fields
+ configs.setup({
+ -- List of languages in-> :h
+ ensure_installed = {
+ "c",
+ "go",
+ "bash",
+ "lua",
+ "python",
+ "vim",
+ "vimdoc",
+ "gitignore",
+ "mermaid",
+ "markdown",
+ "rnoweb",
+ "r",
+ "rust",
+ "dockerfile",
+ "graphql",
+ "yaml",
+ "json",
+ "xml",
+ "sxhkdrc",
+ "zathurarc",
+ },
+ ignore_install = {
+ "javascript",
+ "typescript",
+ },
+ sync_install = false,
+ highlight = { enable = true },
+ indent = { enable = false },
+ additional_vim_regex_highlighting = false,
+ })
+ end,
+ },
{ -- No nonsense, very stoic
"aktersnurra/no-clown-fiesta.nvim",
- dependencies = {
- {
- "nvim-treesitter/nvim-treesitter",
- build = ":TSUpdate",
- config = function()
- local configs = require("nvim-treesitter.configs")
- ---@diagnostic disable-next-line: missing-fields
- configs.setup({
- -- List of languages in-> :h
- ensure_installed = {
- "c",
- "go",
- "bash",
- "lua",
- "python",
- "vim",
- "vimdoc",
- "gitignore",
- "mermaid",
- "markdown",
- "rnoweb",
- "r",
- "rust",
- "dockerfile",
- "graphql",
- "yaml",
- "json",
- "xml",
- "sxhkdrc",
- "zathurarc",
- },
- ignore_install = {
- "javascript",
- "typescript",
- },
- sync_install = false,
- highlight = { enable = true },
- indent = { enable = false },
- additional_vim_regex_highlighting = false,
- })
- end,
- },
- },
+ dependencies = "nvim-treesitter/nvim-treesitter",
lazy = false,
priority = 1000,
config = function()