Update main branch #1

Merged
jakalx merged 120 commits from develop into main 2024-02-05 21:51:32 +01:00
2 changed files with 21 additions and 6 deletions
Showing only changes of commit dbe14a7d9a - Show all commits

View file

@ -0,0 +1,20 @@
{ config, lib, pkgs, ... }:
{
programs.neovim = {
enable = true;
vimAlias = true;
extraConfig = ''
set nowrap
'';
plugins = with pkgs.vimPlugins; [
vim-nix
indentLine
indent-blankline-nvim
neoformat
];
};
}

View file

@ -10,10 +10,7 @@ let
myEza = if builtins.hasAttr "eza" pkgs then "eza" else "exa";
in {
imports = [
# shell config
#./modules/shell
];
imports = [ ./alex/programs/neovim/default.nix ];
programs.home-manager.enable = true;
home = {
@ -182,8 +179,6 @@ in {
ssh.enable = true;
neovim = import ./modules/nvim.nix pkgs;
texlive.enable = true;
};