Compare commits
No commits in common. "c23f2e8e993acdfed70f0c614e406b4095f53607" and "ebc5fbbe5c1e3060ca670bf8d8a4fb86286de92f" have entirely different histories.
c23f2e8e99
...
ebc5fbbe5c
2 changed files with 4 additions and 5 deletions
|
@ -2,15 +2,15 @@ vim.g.mapleader = " "
|
|||
vim.g.maplocalleader = " "
|
||||
|
||||
local lazypath = vim.fn.stdpath "data" .. "/lazy/lazy.nvim"
|
||||
if not (vim.uv or vim.loop).fs_stat(lazypath) then
|
||||
vim.fn.system({
|
||||
if not vim.uv.fs_stat(lazypath) then
|
||||
vim.fn.system {
|
||||
"git",
|
||||
"clone",
|
||||
"--filter=blob:none",
|
||||
"--branch=stable",
|
||||
"https://github.com/folke/lazy.nvim.git",
|
||||
lazypath,
|
||||
})
|
||||
}
|
||||
end
|
||||
|
||||
vim.opt.rtp:prepend(lazypath)
|
||||
|
|
|
@ -24,8 +24,7 @@ return {
|
|||
"clangd",
|
||||
"gopls",
|
||||
"rust_analyzer",
|
||||
"hls",
|
||||
"roc_ls",
|
||||
"ocamllsp",
|
||||
}
|
||||
|
||||
for _, s in ipairs(servers) do
|
||||
|
|
Loading…
Reference in a new issue