feat: use unstable neovim packages

This commit is contained in:
Michael Mandl 2023-03-13 13:52:54 +01:00
parent b5d454b619
commit 1420de7bfc
Signed by: mandlm
GPG key ID: 4AA25D647AA54CC7
3 changed files with 44 additions and 9 deletions

View file

@ -45,7 +45,7 @@ let
};
in
{
home.packages = with pkgs; [
home.packages = with pkgs.unstable; [
xclip
# language servers
@ -68,7 +68,7 @@ in
];
# symlink for a stable path
home.file.".vscode-extensions/vscode-lldb".source = pkgs.vscode-extensions.vadimcn.vscode-lldb;
home.file.".vscode-extensions/vscode-lldb".source = pkgs.unstable.vscode-extensions.vadimcn.vscode-lldb;
home.sessionVariables = {
EDITOR = "nvim";
@ -77,7 +77,8 @@ in
programs = {
neovim = {
enable = true;
plugins = with pkgs.vimPlugins; [
# package = pkgs.unstable.neovim;
plugins = with pkgs.unstable.vimPlugins; [
# theme
nvim-solarized-lua