dotfiles

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

init.lua (290B)


      1 local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
      2 if not vim.loop.fs_stat(lazypath) then
      3   vim.fn.system({
      4     "git",
      5     "clone",
      6     "--filter=blob:none",
      7     "https://github.com/folke/lazy.nvim.git",
      8     lazypath,
      9   })
     10 end
     11 --vim.opt.rtp:prepend(lazypath)
     12 
     13 require("linus")
     14 
     15 
     16