fmt: alejandra

This commit is contained in:
♥ Minnie ♥ 2024-08-08 09:58:48 +08:00
parent a6a7676c4e
commit 537828c2e9
Signed by: jasmine
GPG key ID: 8563E358D4E8040E
22 changed files with 124 additions and 168 deletions

View file

@ -1,13 +1,11 @@
{ pkgs, ... }:
{
{pkgs, ...}: {
# Tree-sitter is a parser generator tool and an incremental parsing library.
plugins.treesitter = {
enable = true;
# Options provided to the require('nvim-treesitter.configs').setup function.
settings = {
highlight = {
highlight = {
enable = true; # Enable syntax highlighing.
};
indent = {
@ -21,4 +19,3 @@
grammarPackages = pkgs.vimPlugins.nvim-treesitter.allGrammars;
};
}