This commit is contained in:
naman 2024-02-24 20:52:32 +05:30
parent 0bfc1dc00e
commit 989e881a75
1 changed files with 11 additions and 2 deletions

View File

@ -244,7 +244,7 @@ vim.o.hlsearch = false
-- Make line numbers default
vim.wo.number = true
-- enable relative line numbers
-- Enable relative line numbers
vim.wo.relativenumber = true
-- Enable mouse mode
@ -518,7 +518,16 @@ require('mason-lspconfig').setup()
local servers = {
-- clangd = {},
-- gopls = {},
pyright = {},
pyright = {
python = {
analysis = {
typeCheckingMode = "strict"
}
}
},
clangd = {},
-- rust_analyzer = {},
-- tsserver = {},
-- html = { filetypes = { 'html', 'twig', 'hbs'} },