diff options
author | Chris <[email protected]> | 2021-03-17 20:32:52 -0400 |
---|---|---|
committer | Chris <[email protected]> | 2021-03-17 20:32:52 -0400 |
commit | 6ed2437edbbc49f03df1023f4dae723cc7ba77d3 (patch) | |
tree | d0b3cf04722baeb9ea042be98af38d9c56c1d292 /lua/lsp/python-ls.lua | |
parent | 32669553598a8c8b36b2c1884744fee2363b4120 (diff) |
new language servers and smart document highlighting
Diffstat (limited to 'lua/lsp/python-ls.lua')
-rw-r--r-- | lua/lsp/python-ls.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lua/lsp/python-ls.lua b/lua/lsp/python-ls.lua index 11eeef91..19de234a 100644 --- a/lua/lsp/python-ls.lua +++ b/lua/lsp/python-ls.lua @@ -1,2 +1,4 @@ -- npm i -g pyright -require'lspconfig'.pyright.setup{} +require'lspconfig'.pyright.setup{ + on_attach = require'lsp'.common_on_attach, +} |