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