yay
This commit is contained in:
commit
9d3d05066f
80 changed files with 7776 additions and 0 deletions
24
lua/config/pmstrap.lua
Normal file
24
lua/config/pmstrap.lua
Normal file
|
@ -0,0 +1,24 @@
|
|||
vim.g.mapleader = " "
|
||||
vim.g.maplocalleader = " "
|
||||
|
||||
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)
|
||||
-- bootstrap lazy.nvim
|
||||
require("lazy").setup("config.packages", {
|
||||
defaults = {
|
||||
lazy = false
|
||||
},
|
||||
-- install = {
|
||||
-- colorscheme = { "catppuccin" },
|
||||
-- }
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue