Don't set neovim config in nix, just enable program, get config from separate repo
This commit is contained in:
parent
97abceef12
commit
25c5382905
|
@ -4,7 +4,6 @@
|
||||||
programs.neovim = {
|
programs.neovim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
defaultEditor = true;
|
defaultEditor = true;
|
||||||
extraLuaConfig = builtins.readFile ./config/nvim/init.lua;
|
|
||||||
viAlias = true;
|
viAlias = true;
|
||||||
vimAlias = true;
|
vimAlias = true;
|
||||||
vimdiffAlias = true;
|
vimdiffAlias = true;
|
||||||
|
@ -41,5 +40,4 @@
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
home.packages = with pkgs; [ tree-sitter ];
|
home.packages = with pkgs; [ tree-sitter ];
|
||||||
xdg.configFile."nvim/lua".source = ./config/nvim/lua;
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue