non important commit

This commit is contained in:
maxstrb 2025-12-23 11:51:59 +01:00
parent c93da5a3c5
commit 12150c45a6

View file

@ -15,20 +15,20 @@
pydocstring pydocstring
]; ];
autocmds = [ extraConfigLua = ''
{ -- Python-only keybinding
event = "FileType"; vim.api.nvim_create_autocmd("FileType", {
pattern = "python"; pattern = "python",
callback = '' callback = function()
vim.keymap.set( vim.keymap.set(
"n", "n",
"<leader>ds", "<leader>ds",
"<cmd>silent !pydocstring --style google<cr>", "<cmd>silent !pydocstring --style google<cr>",
{ buffer = true, desc = "Generate Python docstring" } { buffer = true, desc = "Generate Python docstring" }
) )
''; end,
} })
]; '';
settings.vim = { settings.vim = {
theme = { theme = {