Compare commits

...

2 commits

2 changed files with 5 additions and 4 deletions

View file

@ -2,15 +2,15 @@ vim.g.mapleader = " "
vim.g.maplocalleader = " " vim.g.maplocalleader = " "
local lazypath = vim.fn.stdpath "data" .. "/lazy/lazy.nvim" local lazypath = vim.fn.stdpath "data" .. "/lazy/lazy.nvim"
if not vim.uv.fs_stat(lazypath) then if not (vim.uv or vim.loop).fs_stat(lazypath) then
vim.fn.system { vim.fn.system({
"git", "git",
"clone", "clone",
"--filter=blob:none", "--filter=blob:none",
"--branch=stable", "--branch=stable",
"https://github.com/folke/lazy.nvim.git", "https://github.com/folke/lazy.nvim.git",
lazypath, lazypath,
} })
end end
vim.opt.rtp:prepend(lazypath) vim.opt.rtp:prepend(lazypath)

View file

@ -24,7 +24,8 @@ return {
"clangd", "clangd",
"gopls", "gopls",
"rust_analyzer", "rust_analyzer",
"ocamllsp", "hls",
"roc_ls",
} }
for _, s in ipairs(servers) do for _, s in ipairs(servers) do