blob: 8c2825706bb7368f01a009b95713d5fef0f18feb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{ pkgs, ... }:
{
programs.neovim = {
enable = true;
defaultEditor = true;
viAlias = true;
vimAlias = true;
plugins = with pkgs.vimPlugins; [
nvim-treesitter.withAllGrammars
];
extraLuaConfig = builtins.readFile ./global_config.lua;
};
}
|