mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 11:24:55 +02:00
42 lines
834 B
Lua
42 lines
834 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", -- latest stable release
|
|
lazypath,
|
|
})
|
|
end
|
|
vim.opt.rtp:prepend(lazypath)
|
|
|
|
require("lazy").setup({
|
|
|
|
-- Highlight
|
|
{ import = "plugins.colortheme-kanagawa" },
|
|
|
|
{ import = "plugins.indent" },
|
|
{ import = "plugins.nvim-autopairs" },
|
|
-- Filetree
|
|
{ import = "plugins.neo-tree" },
|
|
|
|
-- Status line
|
|
{ import = "plugins.lualine" },
|
|
|
|
-- Fuzzy finder
|
|
{ import = "plugins.telescope" },
|
|
|
|
-- Keybind helper
|
|
{ import = "plugins.which-key" },
|
|
|
|
-- Treesitter
|
|
{ import = "plugins.treesitter" },
|
|
|
|
-- LSP
|
|
{ import = "plugins.lsp" },
|
|
|
|
-- Git changes in gutter
|
|
{ import = "plugins.gitsigns" },
|
|
})
|
|
|