mirror of
https://github.com/youwen5/neovim-flake.git
synced 2024-11-24 19:03:49 -08:00
22 lines
386 B
Nix
22 lines
386 B
Nix
|
{pkgs, ...}: {
|
||
|
imports = [./plugins ./keymaps.nix];
|
||
|
programs.nixvim = {
|
||
|
enable = true;
|
||
|
viAlias = true;
|
||
|
vimAlias = true;
|
||
|
withNodeJs = true;
|
||
|
withRuby = true;
|
||
|
|
||
|
luaLoader.enable = true;
|
||
|
performance = {
|
||
|
combinePlugins.enable = true;
|
||
|
byteCompileLua.enable = true;
|
||
|
};
|
||
|
|
||
|
extraPackages = with pkgs; [
|
||
|
ripgrep
|
||
|
yazi
|
||
|
fd
|
||
|
];
|
||
|
}
|