Files
dotfiles/nvim/.config/nvim/init.lua

20 lines
448 B
Lua
Raw Normal View History

2023-02-15 11:15:29 -05:00
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)
vim.g.mapleader = ','
vim.g.localmapleader = ','
2023-06-28 16:58:05 -04:00
require('lazy').setup('plugins')
require('core/keymaps')
require('core/settings')