This repository has been archived on 2025-11-02. You can view files and clone it, but cannot push or open issues or pull requests.
Files
nix-thinkcentre/home/cli/neovim.nix
2025-10-11 19:10:48 +05:00

17 lines
292 B
Nix

{ 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
];
};
}