Compare commits

..

No commits in common. "fa1fc5801aa23eda69311c94bc80ee1111414983" and "6c74c73de2c38f7cf501d378a0f9cb4325cd1c85" have entirely different histories.

4 changed files with 12 additions and 2 deletions

View file

@ -4,6 +4,7 @@
./keybinds.nix
./languages.nix
./latex.nix
./lean.nix
./visuals.nix
./mini.nix
];

View file

@ -11,7 +11,6 @@
python312Packages.pylatexenc
];
languages = {
lua.lsp.lazydev.enable = true;
python = {
format.type = "ruff";
};

View file

@ -0,0 +1,11 @@
{ pkgs, ... }:
{
vim = {
lazy.plugins."lean.nvim" = {
enabled = true;
package = pkgs.vimPlugins.lean-nvim;
lazy = true;
ft = "lean";
};
};
}

View file

@ -4,7 +4,6 @@
mini = {
icons.enable = true;
ai.enable = true;
surround.enable = true;
};
};
}