mirror of
https://github.com/youwen5/neovim-flake.git
synced 2024-11-24 10:53:51 -08:00
fix: add init.nix back
This commit is contained in:
parent
f883e16d11
commit
becc12177d
2 changed files with 7 additions and 7 deletions
|
@ -1,5 +1,5 @@
|
|||
{pkgs, ...}: {
|
||||
imports = [./plugins ./keymaps.nix];
|
||||
imports = [./plugins ./keymaps.nix ./init.nix];
|
||||
programs.nixvim = {
|
||||
enable = true;
|
||||
viAlias = true;
|
||||
|
@ -12,11 +12,5 @@
|
|||
combinePlugins.enable = true;
|
||||
byteCompileLua.enable = true;
|
||||
};
|
||||
|
||||
extraPackages = with pkgs; [
|
||||
ripgrep
|
||||
yazi
|
||||
fd
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,6 +1,12 @@
|
|||
# Quality of life plugins
|
||||
{pkgs, ...}: {
|
||||
programs.nixvim = {
|
||||
extraPackages = with pkgs; [
|
||||
ripgrep
|
||||
yazi
|
||||
fd
|
||||
];
|
||||
|
||||
plugins = {
|
||||
zen-mode.enable = true;
|
||||
direnv.enable = true;
|
||||
|
|
Loading…
Reference in a new issue