38 lines
667 B
Nix
38 lines
667 B
Nix
{pkgs, ...}: {
|
|
imports = [
|
|
./cmp.nix
|
|
./codeium.nix
|
|
./dap.nix
|
|
./harpoon.nix
|
|
./indent-blankline.nix
|
|
./lsp
|
|
./lualine.nix
|
|
./mini.nix
|
|
./neo-tree.nix
|
|
./neorg.nix
|
|
./noice.nix
|
|
./none-ls.nix
|
|
./rainbow-delimiters.nix
|
|
./telescope.nix
|
|
./treesitter.nix
|
|
./trouble.nix
|
|
./undotree.nix
|
|
./notify.nix
|
|
];
|
|
|
|
plugins = {
|
|
fugitive.enable = true;
|
|
gitsigns.enable = true;
|
|
lastplace.enable = true;
|
|
tmux-navigator.enable = true;
|
|
todo-comments.enable = true;
|
|
transparent.enable = true;
|
|
which-key.enable = true;
|
|
};
|
|
|
|
extraPlugins = with pkgs.vimPlugins;
|
|
[
|
|
vim-nftables
|
|
];
|
|
}
|