about summary refs log tree commit diff stats
path: root/modules/home/soispha/conf/nvim/plgs/treesitter
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-05-23 13:31:11 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-05-23 13:33:40 +0200
commitfd9b0ecef4142a62b45404700ba1cff488f84a73 (patch)
treeef6c1f74f05a2220a41ccff4b0890c39229f32f7 /modules/home/soispha/conf/nvim/plgs/treesitter
parentrefactor(pkgs): Categorize into `by-name` shards (diff)
downloadnixos-config-fd9b0ecef4142a62b45404700ba1cff488f84a73.zip
refactor(modules/home): Setup as "normal" NixOS module
Diffstat (limited to 'modules/home/soispha/conf/nvim/plgs/treesitter')
-rw-r--r--modules/home/soispha/conf/nvim/plgs/treesitter/default.nix55
1 files changed, 0 insertions, 55 deletions
diff --git a/modules/home/soispha/conf/nvim/plgs/treesitter/default.nix b/modules/home/soispha/conf/nvim/plgs/treesitter/default.nix
deleted file mode 100644
index fe43ddd7..00000000
--- a/modules/home/soispha/conf/nvim/plgs/treesitter/default.nix
+++ /dev/null
@@ -1,55 +0,0 @@
-{
-  config,
-  pkgs,
-  lib,
-  ...
-}: {
-  programs.nixvim = {
-    plugins.treesitter = {
-      enable = true;
-
-      ensureInstalled = "all";
-      indent = true;
-
-      # inject nixvim specific highlighting (eg in extraConfigLua).
-      nixvimInjections = true;
-
-      grammarPackages =
-        config.programs.nixvim.plugins.treesitter.package.passthru.allGrammars
-        ++ [pkgs.yts-grammar];
-
-      disabledLanguages = [];
-
-      /*
-      # TODO: this is not supported by the NixVim module, NixNeovim supports this though..
-      highlight = {
-        #  `false` will disable the whole extension
-        enable = true;
-        disable = ["latex"];
-
-        #  Setting this to true will run `:h syntax` and tree-sitter at the same time.
-        #  Set this to `true` if you depend on 'syntax' being enabled (like for indentation).
-        #  Using this option may slow down your editor; and you may see some duplicate highlights.
-        #  Instead of true it can also be a list of languages
-        additionalVimRegexHighlighting = [""];
-      };
-      */
-
-      incrementalSelection = {
-        enable = true;
-        keymaps = {
-          # TODO: include these in the which-key description
-          initSelection = "gnn"; #  set to `false` to disable one of the mappings
-          nodeIncremental = "grn";
-          scopeIncremental = "grc";
-          nodeDecremental = "grm";
-        };
-      };
-    };
-    extraFiles = {
-      "queries/yts/highlights.scm" = ''
-        ${lib.strings.fileContents "${pkgs.yts-grammar}/queries/highlights.scm"}
-      '';
-    };
-  };
-}