Do not use unstable neovim

This commit is contained in:
Giulio De Pasquale 2022-10-11 21:33:07 +02:00
parent 8a00748447
commit b5a0e38e59

View File

@ -1,4 +1,4 @@
{ config, pkgs, unstable, ... }: { config, pkgs, ... }:
{ {
imports = [ ./zsh.nix ./git.nix ]; imports = [ ./zsh.nix ./git.nix ];
@ -15,7 +15,6 @@
programs.neovim = { programs.neovim = {
enable = true; enable = true;
package = unstable.neovim-unwrapped;
extraPackages = with pkgs; [ extraPackages = with pkgs; [
nodePackages.prettier nodePackages.prettier
nodePackages.pyright nodePackages.pyright
@ -185,7 +184,7 @@
viAlias = true; viAlias = true;
vimAlias = true; vimAlias = true;
plugins = with unstable.vimPlugins; [ plugins = with pkgs.vimPlugins; [
vim-nix vim-nix
molokai molokai
vim-airline vim-airline
@ -202,7 +201,7 @@
vim-vsnip vim-vsnip
nvim-cmp nvim-cmp
cmp-nvim-lsp cmp-nvim-lsp
(nvim-treesitter.withPlugins (_: unstable.tree-sitter.allGrammars)) (nvim-treesitter.withPlugins (_: pkgs.tree-sitter.allGrammars))
nvim-treesitter-textobjects nvim-treesitter-textobjects
]; ];
}; };