12 lines
136 B
Nix
12 lines
136 B
Nix
|
{ pkgs, ... }: {
|
||
|
imports = [
|
||
|
./lsp
|
||
|
./telescope
|
||
|
./ui
|
||
|
./aw
|
||
|
];
|
||
|
|
||
|
# Persistence
|
||
|
plugins.persistence.enable = true;
|
||
|
}
|