summaryrefslogtreecommitdiffstats
path: root/.config/nvim/lua/user/lsp/python.lua
blob: 2b073be31d4ec41497618eecaa4e01c641390d0e (plain)
1
2
3
4
5
6
7
8
9
10
lsp = require 'lspconfig'

lsp.pylsp.setup {
	cmd = {"pylsp"},
	filetypes = {"py", "python"},
	root_dir = lsp.util.root_pattern("main.py", "configure", "Makefile", ".git"),
	init_options = {

	},
}