Changed: Neovim Conff

This commit is contained in:
DerGrumpf 2025-03-26 14:36:56 +01:00
parent 40e8e8ff65
commit 4a21ce48d0
2 changed files with 13 additions and 1 deletions

View File

@ -21,7 +21,7 @@
};
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05";
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05";
hyprland.url = "github:hyprwm/Hyprland";
home-manager.url = "github:nix-community/home-manager/release-24.05";

12
home/programs/neovim.nix Normal file
View File

@ -0,0 +1,12 @@
{ pkgs, ... }: {
programs.neovim = {
enable = true;
viAlias = true;
vimAlias = true;
defaultEditor = true;
plugins = with pkgs.vimPlugins; [
nvim-tree-lua
nvim-treesitter.withAllGrammars
];
};
}