Heavily inspired by https://github.com/Doc-Steve/dendritic-design-with-flake-parts. > Atomic commits? Never heard of them!
25 lines
307 B
Nix
25 lines
307 B
Nix
{ ... }: {
|
|
imports = [
|
|
./lsp.nix
|
|
./telescope
|
|
./cmp
|
|
];
|
|
|
|
plugins = {
|
|
lualine.enable = true;
|
|
|
|
web-devicons.enable = true;
|
|
|
|
treesitter = {
|
|
enable = true;
|
|
autoLoad = true;
|
|
};
|
|
|
|
gitsigns.enable = true;
|
|
|
|
which-key.enable = true;
|
|
|
|
glow.enable = true;
|
|
};
|
|
}
|