dotfiles/nvim/lua/trianta/lazy.lua

35 lines
913 B
Lua

-- Lazy
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", -- latest stable release
lazypath,
})
end
vim.opt.rtp:prepend(lazypath)
return require('lazy').setup({
-- Packer can manage itself
"folke/lazy.nvim",
{
"folke/todo-comments.nvim",
dependencies = { "nvim-lua/plenary.nvim" },
opts = {
-- your configuration comes here
-- or leave it empty to use the default settings
-- refer to the configuration section below
}
},
require("trianta.colors"),
require("trianta.lsp"),
require("trianta.nav"),
require("trianta.focus"),
require("trianta.obsidian"),
require("trianta.ollama"),
})