Files
wmcv-nvim-config/nvim/init.lua
William McVicar b1c702054c First set of plugins
* telescope
* colorscheme
* neotree
* lualine
* treesitter (seems to be broken)
2024-01-05 00:43:09 +01:00

16 lines
344 B
Lua

local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
vim.fn.system({
"git",
"clone",
"--filter=blob:none",
"https://github.com/folke/lazy.nvim.git",
"--branch=stable",
lazypath,
})
end
vim.opt.rtp:prepend(lazypath)
require("settings")
require("lazy").setup("plugins")