mirror of
https://github.com/iofq/nvim.nix.git
synced 2026-01-23 08:55:16 -06:00
18 lines
321 B
Nix
18 lines
321 B
Nix
{pkgs, ...}:
|
|
{
|
|
base = with pkgs.vimPlugins; [
|
|
telescope-nvim
|
|
telescope-fzf-native-nvim
|
|
toggleterm-nvim
|
|
mini-nvim
|
|
gitsigns-nvim
|
|
oil-nvim
|
|
rose-pine
|
|
nvim-lspconfig
|
|
nvim-treesitter.withAllGrammars
|
|
nvim-treesitter-textobjects
|
|
];
|
|
extra = with pkgs.vimPlugins; [
|
|
vim-nix
|
|
];
|
|
}
|