Skip to content

Commit 8291b9a

Browse files
committed
lazy.nvim updates
1 parent 4305aeb commit 8291b9a

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

lua/peteskiis/core/init.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
require("josean.core.options")
2-
require("josean.core.keymaps")
1+
require 'peteskiis.core.options'
2+
require 'peteskiis.core.keymaps'

lua/peteskiis/lazy.lua

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
1+
local lazypath = vim.fn.stdpath 'data' .. '/lazy/lazy.nvim'
22
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-
"--branch=stable", -- latest stable release
3+
vim.fn.system {
4+
'git',
5+
'clone',
6+
'--filter=blob:none',
7+
'https://github.com/folke/lazy.nvim.git',
8+
'--branch=stable', -- latest stable release
99
lazypath,
10-
})
10+
}
1111
end
1212
vim.opt.rtp:prepend(lazypath)
1313

14-
require("lazy").setup({ { import = "josean.plugins" }, { import = "josean.plugins.lsp" } }, {
14+
require('lazy').setup({ { import = 'peteskiis.plugins' }, { import = 'peteskiis.plugins.lsp' } }, {
1515
checker = {
1616
enabled = true,
1717
notify = false,

0 commit comments

Comments
 (0)