add autoformatting with Python
This commit is contained in:
parent
25a94d9353
commit
743c03a1b6
3 changed files with 29 additions and 1 deletions
18
lua/plugins.lua
Normal file
18
lua/plugins.lua
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
return require('packer').startup(function(use)
|
||||
|
||||
-- Packer can manage itself
|
||||
use 'wbthomason/packer.nvim'
|
||||
|
||||
use({
|
||||
"kylechui/nvim-surround",
|
||||
tag = "*", -- Use for stability; omit to use `main` branch for the latest features
|
||||
config = function()
|
||||
require("nvim-surround").setup({
|
||||
-- Configuration here, or leave empty to use defaults
|
||||
})
|
||||
end
|
||||
})
|
||||
|
||||
use 'junegunn/vim-easy-align'
|
||||
|
||||
end)
|
||||
Loading…
Add table
Add a link
Reference in a new issue