Use ty again
This commit is contained in:
parent
68de9ec1a8
commit
289aff0259
2 changed files with 10 additions and 8 deletions
|
|
@ -2,7 +2,9 @@
|
||||||
-- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua
|
-- Default options that are always set: https://github.com/LazyVim/LazyVim/blob/main/lua/lazyvim/config/options.lua
|
||||||
-- Add any additional options here
|
-- Add any additional options here
|
||||||
|
|
||||||
vim.g.lazyvim_python_lsp = "basedpyright"
|
vim.lsp.enable("ty")
|
||||||
|
|
||||||
|
vim.g.lazyvim_python_lsp = "ty"
|
||||||
|
|
||||||
--- Whitespace ---
|
--- Whitespace ---
|
||||||
vim.o.expandtab = true
|
vim.o.expandtab = true
|
||||||
|
|
|
||||||
|
|
@ -5,13 +5,13 @@ return {
|
||||||
"neovim/nvim-lspconfig",
|
"neovim/nvim-lspconfig",
|
||||||
opts = {
|
opts = {
|
||||||
servers = {
|
servers = {
|
||||||
basedpyright = {
|
ty = {},
|
||||||
settings = {
|
},
|
||||||
basedpyright = {
|
},
|
||||||
typeCheckingMode = "basic",
|
{
|
||||||
},
|
"mason-org/mason.nvim",
|
||||||
},
|
opts = {
|
||||||
},
|
ensure_installed = { "ty" },
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue