non important commit

This commit is contained in:
maxstrb 2025-12-23 11:49:39 +01:00
parent 89575d70a9
commit c93da5a3c5

View file

@ -11,6 +11,25 @@
enable = true;
enableManpages = true;
extraPackages = with pkgs; [
pydocstring
];
autocmds = [
{
event = "FileType";
pattern = "python";
callback = ''
vim.keymap.set(
"n",
"<leader>ds",
"<cmd>silent !pydocstring --style google<cr>",
{ buffer = true, desc = "Generate Python docstring" }
)
'';
}
];
settings.vim = {
theme = {
enable = true;