Changed Neovim to use Nixvim instead of Lazyvim.
Moved Neovim into its own directory
This commit is contained in:
20
modules/neovim/default.nix
Normal file
20
modules/neovim/default.nix
Normal file
@ -0,0 +1,20 @@
|
||||
{ inputs, config, lib, pkgs, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs;
|
||||
[
|
||||
neovim
|
||||
vimPlugins.LazyVim
|
||||
vimPlugins.lazygit-nvim
|
||||
wl-clipboard
|
||||
xclip
|
||||
];
|
||||
|
||||
home-manager.sharedModules = [
|
||||
./home.nix
|
||||
];
|
||||
|
||||
|
||||
# programs.neovim = {
|
||||
# enable = true;
|
||||
#};
|
||||
}
|
||||
Reference in New Issue
Block a user