1
0

Plugin cleanup

Use non-broken version of lsp-zero
This commit is contained in:
Patrick Auernig 2023-05-13 13:44:16 +02:00
parent a76f0153cd
commit 154be3e35e
2 changed files with 6 additions and 34 deletions

View File

@ -84,15 +84,20 @@ local function spec(use)
use {
"VonHeikemen/lsp-zero.nvim",
branch = "v2.x",
branch = "v1.x",
requires = {
{ "neovim/nvim-lspconfig" },
-- completion
{ "hrsh7th/nvim-cmp" },
{ "hrsh7th/cmp-nvim-lsp" },
{ "hrsh7th/cmp-path" },
-- formatting
{ "mhartington/formatter.nvim" },
-- snippets
{ "saadparwaiz1/cmp_luasnip" },
{ "L3MON4D3/LuaSnip" },
{ "rafamadriz/friendly-snippets" },
-- lsp manager
{ "williamboman/mason.nvim" },
{ "williamboman/mason-lspconfig.nvim" },
},
@ -101,8 +106,6 @@ local function spec(use)
end
}
use "mhartington/formatter.nvim"
---- Just Visual Stuff
@ -207,17 +210,6 @@ local function spec(use)
end
}
use {
"valeth/remote-sshfs.nvim",
branch = "no-cwd-on-jobstart",
requires = {
{ "nvim-telescope/telescope.nvim" },
},
config = function()
require("valeth.packer.sshfs")
end
}
use {
"ThePrimeagen/harpoon",
requires = {

View File

@ -1,20 +0,0 @@
local ssh_config = vim.fs.normalize((os.getenv("XDG_CONFIG_HOME") or "~/.config") .. "/ssh/config")
local config
if vim.fn.filereadable(ssh_config) == 1 then
config = {
connections = {
ssh_configs = {
ssh_config,
},
sshfs_args = {
"-F " .. ssh_config,
}
}
}
else
config = {}
end
require("remote-sshfs").setup(config)