Add: first import
This commit is contained in:
commit
82641f61be
23 changed files with 800 additions and 0 deletions
10
ftplugin/python.lua
Normal file
10
ftplugin/python.lua
Normal 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,
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue