Compare commits
2 commits
ebc5fbbe5c
...
c23f2e8e99
Author | SHA1 | Date | |
---|---|---|---|
c23f2e8e99 | |||
9dfed2914e |
2 changed files with 5 additions and 4 deletions
|
@ -2,15 +2,15 @@ vim.g.mapleader = " "
|
|||
vim.g.maplocalleader = " "
|
||||
|
||||
local lazypath = vim.fn.stdpath "data" .. "/lazy/lazy.nvim"
|
||||
if not vim.uv.fs_stat(lazypath) then
|
||||
vim.fn.system {
|
||||
if not (vim.uv or vim.loop).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,7 +24,8 @@ return {
|
|||
"clangd",
|
||||
"gopls",
|
||||
"rust_analyzer",
|
||||
"ocamllsp",
|
||||
"hls",
|
||||
"roc_ls",
|
||||
}
|
||||
|
||||
for _, s in ipairs(servers) do
|
||||
|
|
Loading…
Reference in a new issue