Updated nvim which forced me to change the lsp config, no longer using

that plugin (which honestly wasn't doing much) and I am now using the
nvim built in perfered way to config the lsps.
This commit is contained in:
2025-10-21 21:26:49 -07:00
parent ca2d6550fa
commit 0a6c51ad4f
2 changed files with 82 additions and 39 deletions
+5 -6
View File
@@ -13,7 +13,6 @@ vim.opt.rtp:prepend(lazypath)
require("lazy").setup({
"nvim-treesitter/nvim-treesitter",
"morhetz/gruvbox",
"neovim/nvim-lspconfig",
{ "nvim-telescope/telescope.nvim", dependencies = {"nvim-lua/plenary.nvim"} },
"windwp/nvim-autopairs",
{"sheerun/vim-polyglot", enabled=false},
@@ -49,7 +48,7 @@ require('nvim-treesitter.configs').setup {
enable = true,
},
playground = {
enabled = true,
enabled = false,
persist_queries = false,
}
}
@@ -111,8 +110,8 @@ vim.filetype.add({
-- filetype = "odin",
--}
local pipepath = vim.fn.stdpath("cache") .. "/server.pipe"
if not vim.loop.fs_stat(pipepath) then
vim.fn.serverstart(pipepath)
end
--local pipepath = vim.fn.stdpath("cache") .. "/server.pipe"
--if not vim.loop.fs_stat(pipepath) then
-- vim.fn.serverstart(pipepath)
--end