2024-08-31 19:16:06 -04:00
|
|
|
{pkgs, ...}: {
|
|
|
|
programs.neovim.plugins = [
|
|
|
|
{
|
|
|
|
plugin = pkgs.vimPlugins.nvim-treesitter-context;
|
|
|
|
type = "lua";
|
|
|
|
config =
|
|
|
|
# lua
|
|
|
|
''
|
|
|
|
require('treesitter-context').setup({
|
|
|
|
enable = true,
|
|
|
|
max_lines = 3,
|
|
|
|
min_window_height = 20,
|
|
|
|
});
|
2024-05-06 18:14:52 -04:00
|
|
|
|
2024-08-31 19:16:06 -04:00
|
|
|
vim.cmd.hi('TreesitterContextBottom', 'gui=underline guisp=Grey');
|
|
|
|
'';
|
|
|
|
}
|
2024-05-06 18:14:52 -04:00
|
|
|
|
2024-08-31 19:16:06 -04:00
|
|
|
pkgs.vimPlugins.nvim-treesitter-textobjects
|
2024-05-06 18:14:52 -04:00
|
|
|
|
2024-08-31 19:16:06 -04:00
|
|
|
{
|
|
|
|
plugin = pkgs.vimPlugins.nvim-treesitter.withAllGrammars;
|
|
|
|
type = "lua";
|
|
|
|
config =
|
|
|
|
# lua
|
|
|
|
''
|
|
|
|
require('nvim-treesitter.configs').setup({
|
|
|
|
highlight = { enable = true },
|
|
|
|
indent = { enable = true },
|
|
|
|
});
|
|
|
|
'';
|
|
|
|
}
|
|
|
|
];
|
2024-05-06 18:14:52 -04:00
|
|
|
}
|