kickstart.nvim/init.lua

25 lines
756 B
Lua
Raw Normal View History

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')
2025-02-06 01:54:19 +03:00
local lazypath = vim.fn.stdpath('data') .. '/lazy/lazy.nvim'
if not (vim.uv or vim.loop).fs_stat(lazypath) then
local lazyrepo = 'https://github.com/folke/lazy.nvim.git'
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
vim.opt.rtp:prepend(lazypath)
2022-06-23 23:35:53 -04:00
require('lazy').setup({
2025-02-06 01:54:19 +03:00
root = vim.fn.stdpath('data') .. '/lazy',
defaults = {
lazy = true,
},
2025-02-06 01:54:19 +03:00
spec = require('plugins').spec, -- Load plugin specifications from plugins.lua
})