nix-config/users/tacocat/neovim/plugins.nix

38 lines
654 B
Nix
Raw Normal View History

2024-03-23 15:56:39 +00:00
{...}: {
programs.nixvim.plugins = {
telescope = {
enable = true;
};
2024-03-27 23:33:22 +00:00
comment = {
2024-03-23 15:56:39 +00:00
enable = true;
};
markdown-preview = {
enable = true;
settings.browser = "firefox";
};
lualine = {
enable = true;
sectionSeparators = {
left = "";
right = "";
};
componentSeparators = {
left = "";
right = "";
};
};
luasnip = {
enable = true;
};
friendly-snippets.enable = true;
gitsigns = {
enable = true;
};
treesitter = {
enable = true;
nixvimInjections = true;
indent = true;
};
};
}