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:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user