2023-02-17 16:31:57 -05:00
|
|
|
vim.g.mapleader = ' '
|
|
|
|
|
vim.g.maplocalleader = ' '
|
|
|
|
|
|
2025-02-06 01:54:19 +03:00
|
|
|
require('settings')
|
|
|
|
|
require('plugins') -- Ensure this file uses lazy.nvim for loading plugins
|
|
|
|
|
require('keymaps')
|
2024-02-26 10:03:53 -05:00
|
|
|
|
2025-02-06 01:54:19 +03:00
|
|
|
local lazypath = vim.fn.stdpath('data') .. '/lazy/lazy.nvim'
|
2024-08-22 22:56:33 +02:00
|
|
|
if not (vim.uv or vim.loop).fs_stat(lazypath) then
|
2024-02-26 10:03:53 -05:00
|
|
|
local lazyrepo = 'https://github.com/folke/lazy.nvim.git'
|
2024-07-16 18:06:47 +02:00
|
|
|
local out = vim.fn.system { 'git', 'clone', '--filter=blob:none', '--branch=stable', lazyrepo, lazypath }
|
|
|
|
|
if vim.v.shell_error ~= 0 then
|
|
|
|
|
error('Error cloning lazy.nvim:\n' .. out)
|
|
|
|
|
end
|
2025-02-06 01:54:19 +03:00
|
|
|
end
|
2023-02-17 16:31:57 -05:00
|
|
|
vim.opt.rtp:prepend(lazypath)
|
2022-06-23 23:35:53 -04:00
|
|
|
|
2024-03-06 17:49:44 +01:00
|
|
|
require('lazy').setup({
|
2025-02-06 01:54:19 +03:00
|
|
|
root = vim.fn.stdpath('data') .. '/lazy',
|
|
|
|
|
defaults = {
|
|
|
|
|
lazy = true,
|
2024-03-06 17:49:44 +01:00
|
|
|
},
|
2025-02-06 01:54:19 +03:00
|
|
|
spec = require('plugins').spec, -- Load plugin specifications from plugins.lua
|
2024-03-06 17:49:44 +01:00
|
|
|
})
|