15 lines
		
	
	
	
		
			325 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			325 B
		
	
	
	
		
			Lua
		
	
	
	
	
	
| -- Python formatter
 | |
| return {
 | |
|   -- https://github.com/psf/black
 | |
|   'psf/black',
 | |
|   ft = 'python',
 | |
|   config =function ()
 | |
|     -- Automatically format file buffer when saving
 | |
|     vim.api.nvim_create_autocmd({ "BufWritePre" }, {
 | |
|       pattern = "*.py",
 | |
|       callback = function()
 | |
|         vim.cmd("Black")
 | |
|       end,
 | |
|     })
 | |
|   end
 | |
| }
 | 
