Files
nix-thinkcentre/home/cli/neovim.nix

17 lines
292 B
Nix
Raw Normal View History

2025-10-11 19:10:48 +05:00
{ pkgs, config, ... }: {
programs.neovim = {
enable = true;
package = pkgs.neovim-unwrapped;
defaultEditor = true;
extraPackages = with pkgs; [
nil
];
plugins = with pkgs.vimPlugins; [
lazy-nvim
nvim-lspconfig
nvim-tree-lua
];
};
}