Compare commits

...

2 commits

Author SHA1 Message Date
92e6a5dc1f LSP: Rollback to pyright 2026-04-02 22:41:49 +03:00
ca3b32d261 LSP: Trying ty instead of pyright 2026-03-16 11:15:38 +03:00
3 changed files with 10 additions and 4 deletions

View file

@ -31,8 +31,7 @@ cmp.setup {
sources = {
{ name = "luasnip" },
{ name = "nvim_lsp" },
{ name = "path" },
{ name = "buffer" },
{ name = "path" }
},
mapping = {
["<C-n>"] = cmp.mapping.select_next_item { behavior = cmp.SelectBehavior.Insert },

View file

@ -70,6 +70,15 @@ local servers = {
"--offset-encoding=utf-16",
},
},
html = {
filetypes = { "html", "gohtml" },
},
eslint = {
filetypes = { "javascript", "typescript", "html", "gohtml" },
},
ts_ls = {
filetypes = { "javascript", "typescript" },
},
}
local servers_to_install = vim.tbl_filter(function(key)

View file

@ -5,8 +5,6 @@ require 'nvim-treesitter.configs'.setup {
"vim",
"vimdoc",
"query",
"elixir",
"heex",
"javascript",
"html",
"go",