From c1bdde3ea506b3f35a4e1cdfc97dc2ae7bfe8573 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kha=C3=AFs=20COLIN?= Date: Sat, 27 Jul 2024 20:09:00 +0200 Subject: [PATCH] nixvim(treesitter): install treesitter --- nixvim/config/default.nix | 1 + nixvim/config/treesitter.nix | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 nixvim/config/treesitter.nix diff --git a/nixvim/config/default.nix b/nixvim/config/default.nix index bcb6916..4687b9d 100644 --- a/nixvim/config/default.nix +++ b/nixvim/config/default.nix @@ -15,6 +15,7 @@ # language support & lsp ./lsp.nix + ./treesitter.nix ./nix.nix # autocompletion diff --git a/nixvim/config/treesitter.nix b/nixvim/config/treesitter.nix new file mode 100644 index 0000000..d15124b --- /dev/null +++ b/nixvim/config/treesitter.nix @@ -0,0 +1,5 @@ +{ + plugins.treesitter = { + enable = true; + }; +}