From 006bb014df80adad71353ca8f3b3f40cfd016894 Mon Sep 17 00:00:00 2001 From: Simon Cornet Date: Tue, 18 Jun 2024 17:30:54 +0200 Subject: [PATCH] [neovim] feat: added python to treesitter --- 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 8e9ff30..f3da473 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", "bash", "comment", "nix,", "yaml" }, + ensure_installed = { "ansible", "bash", "comment", "nix,", "python", "yaml" }, sync_install = false, highlight = { enable = true }, indent = { enable = true },