Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions lua/config/lazy.lua
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
local map = vim.keymap.set

-- Bootstrap lazy.nvim
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not (vim.uv or vim.loop).fs_stat(lazypath) then
Expand Down Expand Up @@ -31,3 +33,6 @@ require("lazy").setup {
-- automatically check for plugin updates
checker = { enabled = true },
}

-- syncing plugins
map("n", "<leader>l", "<cmd>Lazy sync<CR>")
Loading