56 lines
1.1 KiB
Nix
56 lines
1.1 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
let
|
|
cfg = config.my.programs.nvim;
|
|
in
|
|
{
|
|
imports = lib.my.listModulesRec ./plugins;
|
|
|
|
options.my.programs.nvim.enable = mkEnableOption "nvim";
|
|
|
|
config = mkIf cfg.enable {
|
|
home-manager.users.moritz = {
|
|
home.packages = with pkgs; [
|
|
(
|
|
if config.my.programs.hyprland.enable
|
|
then neovide-hyprland
|
|
else neovide
|
|
)
|
|
];
|
|
|
|
programs.neovim = {
|
|
enable = true;
|
|
package = pkgs.neovim-nightly;
|
|
vimAlias = true;
|
|
vimdiffAlias = true;
|
|
withNodeJs = true;
|
|
withPython3 = true;
|
|
extraPackages = with pkgs;
|
|
[
|
|
alejandra
|
|
black
|
|
deadnix
|
|
isort
|
|
jq
|
|
nil
|
|
nixpkgs-fmt
|
|
nodePackages.bash-language-server
|
|
rustfmt
|
|
shellcheck
|
|
shfmt
|
|
statix
|
|
stylua
|
|
sumneko-lua-language-server
|
|
taplo
|
|
typst
|
|
typst-lsp
|
|
yamlfmt
|
|
];
|
|
extraLuaConfig = readFile ./options.lua;
|
|
lazy.enable = true;
|
|
};
|
|
};
|
|
};
|
|
}
|