Compare commits
No commits in common. "fa1fc5801aa23eda69311c94bc80ee1111414983" and "6c74c73de2c38f7cf501d378a0f9cb4325cd1c85" have entirely different histories.
fa1fc5801a
...
6c74c73de2
4 changed files with 12 additions and 2 deletions
|
@ -4,6 +4,7 @@
|
||||||
./keybinds.nix
|
./keybinds.nix
|
||||||
./languages.nix
|
./languages.nix
|
||||||
./latex.nix
|
./latex.nix
|
||||||
|
./lean.nix
|
||||||
./visuals.nix
|
./visuals.nix
|
||||||
./mini.nix
|
./mini.nix
|
||||||
];
|
];
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
python312Packages.pylatexenc
|
python312Packages.pylatexenc
|
||||||
];
|
];
|
||||||
languages = {
|
languages = {
|
||||||
lua.lsp.lazydev.enable = true;
|
|
||||||
python = {
|
python = {
|
||||||
format.type = "ruff";
|
format.type = "ruff";
|
||||||
};
|
};
|
||||||
|
|
11
users/natalie/vim/lean.nix
Normal file
11
users/natalie/vim/lean.nix
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
vim = {
|
||||||
|
lazy.plugins."lean.nvim" = {
|
||||||
|
enabled = true;
|
||||||
|
package = pkgs.vimPlugins.lean-nvim;
|
||||||
|
lazy = true;
|
||||||
|
ft = "lean";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -4,7 +4,6 @@
|
||||||
mini = {
|
mini = {
|
||||||
icons.enable = true;
|
icons.enable = true;
|
||||||
ai.enable = true;
|
ai.enable = true;
|
||||||
surround.enable = true;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue