python and godot support

This commit is contained in:
Tyler White 2023-09-10 21:43:37 -07:00
parent 0469b99f40
commit 4a09b836c1
2 changed files with 6 additions and 0 deletions

View File

@ -60,3 +60,8 @@ lspconfig.rust_analyzer.setup{
lspconfig.ols.setup{
on_attach = on_attach,
}
--lspconfig.pylyzer.setup{}
lspconfig.pylsp.setup{
on_attach = on_attach,
flags = lsp_flags,
}

View File

@ -17,4 +17,5 @@ return require('packer').startup(function(use)
use { 'nvim-telescope/telescope.nvim', tag = '0.1.0', requires = {{'nvim-lua/plenary.nvim'}} }
use { 'windwp/nvim-autopairs' }
use 'sheerun/vim-polyglot'
use 'habamax/vim-godot'
end)