2023-02-17 10:13:18 +00:00
|
|
|
-- bootstrap lazy.nvim
|
|
|
|
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)
|
|
|
|
|
2023-02-17 16:29:48 +00:00
|
|
|
local plugins = require("plugins")
|
|
|
|
local opts = require("config.lazy")
|
|
|
|
require("lazy").setup(plugins, opts)
|
2023-02-17 10:13:18 +00:00
|
|
|
|
2022-11-03 11:29:01 +00:00
|
|
|
-- Set vim options
|
2023-02-13 12:57:12 +00:00
|
|
|
require("options")
|
2022-11-03 11:29:01 +00:00
|
|
|
|
2022-11-02 16:11:38 +00:00
|
|
|
-- Define custom keymappings
|
2023-02-13 12:57:12 +00:00
|
|
|
require("keymaps")
|
2022-11-01 15:26:31 +00:00
|
|
|
|
2022-11-02 16:11:38 +00:00
|
|
|
-- Remaining vim commands to be converted to lua
|
2023-02-13 12:57:12 +00:00
|
|
|
require("vimcommands")
|