Linux configuration stuffs
1-- LAZY.NVIM SETUP
2local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
3if not vim.loop.fs_stat(lazypath) then
4 vim.fn.system({
5 "git",
6 "clone",
7 "--filter=blob:none",
8 "https://github.com/folke/lazy.nvim.git",
9 "--branch=stable", -- latest stable release
10 lazypath,
11 })
12end
13vim.opt.rtp:prepend(lazypath)
14
15require("lazy").setup({
16 import = "plugins",
17 defaults = {
18 lazy = false,
19 },
20})