From 204b4104c5d8e3a77b579940f49d95b2e45131df Mon Sep 17 00:00:00 2001 From: Simon Cornet Date: Tue, 18 Jun 2024 17:24:49 +0200 Subject: [PATCH] [neovim] feat: use proper treesitter languages --- nix/home/neovim/neovim.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/home/neovim/neovim.nix b/nix/home/neovim/neovim.nix index c9598fa..8e9ff30 100644 --- a/nix/home/neovim/neovim.nix +++ b/nix/home/neovim/neovim.nix @@ -113,7 +113,7 @@ config = function () local configs = require("nvim-treesitter.configs") configs.setup({ - ensure_installed = { "ansible", "css", "lua", "nix,", "yaml" }, + ensure_installed = { "ansible", "bash", "comment", "nix,", "yaml" }, sync_install = false, highlight = { enable = true }, indent = { enable = true },