From 39036609c50c3867301f6ef5d344401bb5a432f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torjus=20H=C3=A5kestad?= Date: Tue, 4 Jun 2024 16:09:50 +0200 Subject: [PATCH] Add python lsp to nvim --- home/editor/neovim/plugins.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/home/editor/neovim/plugins.lua b/home/editor/neovim/plugins.lua index a787d56..910005d 100644 --- a/home/editor/neovim/plugins.lua +++ b/home/editor/neovim/plugins.lua @@ -126,6 +126,10 @@ lspconfig.tsserver.setup({ lspconfig.rust_analyzer.setup { } +-- LSP: python +lspconfig.pyright.setup { +} + -- LSP: C/C++ lspconfig.clangd.setup({})