Home
Head's Up: I'm in the middle of upgrading my site. Most things are in place, but there are something missing and/or broken including image alt text. Please bear with me while I'm getting things fixed.

Using autopep8 To Format Python Files In Neovim

Install autopep8

pip3 install autopep8
require('lazy').setup({
  --  Other plugins....

  { 'jose-elias-alvarez/null-ls.nvim' },
}
local null_ls = require("null-ls")
null_ls.setup({
    sources = {
      null_ls.builtins.formatting.autopep8
    },
})

Footnotes And References