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