ajs-nvim/init.lua

22 lines
514 B
Lua
Raw Normal View History

2024-03-12 15:14:30 +00:00
require("keymaps")
2024-03-11 13:46:43 +00:00
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not vim.loop.fs_stat(lazypath) then
2024-03-12 15:14:30 +00:00
vim.fn.system({
"git",
"clone",
"--filter=blob:none",
"https://github.com/folke/lazy.nvim.git",
"--branch=stable", -- latest stable release
2024-03-14 13:12:31 +00:00
lazypath,
})
2024-03-11 13:46:43 +00:00
end
vim.opt.rtp:prepend(lazypath)
2024-03-12 15:14:30 +00:00
require("lazy").setup({ { import = "plugins" }, { import = "plugins.lsp" }, { import = "plugins.themes" } })
2024-03-14 11:58:00 +00:00
require("setup.lsp")
2024-03-12 15:14:30 +00:00
vim.cmd("colorscheme rose-pine")
2024-03-16 10:00:39 +00:00
require("options.default")