🪴 my neovim config:)
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

plugins: add treesitter context

robin 11867c00 60cb2c40

+47
+10
config/lua/ivy/plugins/tree-sitter.lua
··· 1 1 return { 2 2 { 3 + "nvim-treesitter-context", 4 + event = "UIEnter", 5 + after = function() 6 + require("treesitter-context").setup({ 7 + mode = "topline", 8 + }) 9 + end, 10 + }, 11 + 12 + { 3 13 "neogen", 4 14 event = "BufAdd", 5 15 after = function()
+21
pkgs/ivy-plugins/_sources/generated.json
··· 810 810 }, 811 811 "version": "802195d8f1980db25a7a39a55f9a25df21756c73" 812 812 }, 813 + "nvim-treesitter-context": { 814 + "cargoLocks": null, 815 + "date": "2025-09-03", 816 + "extract": null, 817 + "name": "nvim-treesitter-context", 818 + "passthru": null, 819 + "pinned": false, 820 + "src": { 821 + "deepClone": false, 822 + "fetchSubmodules": false, 823 + "leaveDotGit": false, 824 + "name": null, 825 + "owner": "nvim-treesitter", 826 + "repo": "nvim-treesitter-context", 827 + "rev": "66a9b5fa9e806918b5fe3dba00c6cce7e230abd2", 828 + "sha256": "sha256-jvoksYJs+U7XX3aIKewQOjIoTZ852uRmqwpXmtSJQa4=", 829 + "sparseCheckout": [], 830 + "type": "github" 831 + }, 832 + "version": "66a9b5fa9e806918b5fe3dba00c6cce7e230abd2" 833 + }, 813 834 "plenary": { 814 835 "cargoLocks": null, 815 836 "date": "2025-07-26",
+12
pkgs/ivy-plugins/_sources/generated.nix
··· 464 464 start = "true"; 465 465 date = "2025-08-31"; 466 466 }; 467 + nvim-treesitter-context = { 468 + pname = "nvim-treesitter-context"; 469 + version = "66a9b5fa9e806918b5fe3dba00c6cce7e230abd2"; 470 + src = fetchFromGitHub { 471 + owner = "nvim-treesitter"; 472 + repo = "nvim-treesitter-context"; 473 + rev = "66a9b5fa9e806918b5fe3dba00c6cce7e230abd2"; 474 + fetchSubmodules = false; 475 + sha256 = "sha256-jvoksYJs+U7XX3aIKewQOjIoTZ852uRmqwpXmtSJQa4="; 476 + }; 477 + date = "2025-09-03"; 478 + }; 467 479 plenary = { 468 480 pname = "plenary"; 469 481 version = "b9fd5226c2f76c951fc8ed5923d85e4de065e509";
+4
pkgs/ivy-plugins/nvfetcher.toml
··· 143 143 src.branch = "main" 144 144 passthru.start = "true" 145 145 146 + [nvim-treesitter-context] 147 + fetch.github = "nvim-treesitter/nvim-treesitter-context" 148 + src.git = "https://github.com/nvim-treesitter/nvim-treesitter-context" 149 + 146 150 [plenary] 147 151 fetch.github = "nvim-lua/plenary.nvim" 148 152 src.git = "https://github.com/nvim-lua/plenary.nvim"