Add: first import

This commit is contained in:
DuN0z 2025-10-22 06:57:49 +02:00
commit 82641f61be
23 changed files with 800 additions and 0 deletions

10
ftplugin/python.lua Normal file
View file

@ -0,0 +1,10 @@
-- LSP Pyright
require("lspconfig").pyright.setup({})
-- Autoformat avec Black à l'enregistrement
vim.api.nvim_create_autocmd("BufWritePre", {
pattern = "*.py",
callback = function()
vim.cmd("Black")
end,
})