dotfiles-nvim/init.lua

26 lines
563 B
Lua
Raw Normal View History

2023-12-18 09:11:00 +01:00
vim.g.loaded_netrw = 1
vim.g.loaded_netrwPlugin = 1
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)
2024-01-07 18:19:07 +01:00
vim.g.mapleader = " "
2023-12-28 14:03:59 +01:00
2024-01-07 18:19:07 +01:00
require("lazy").setup({ { import = "plugins" } })
2023-12-18 09:11:00 +01:00
require("sets")
require("remaps")
require("filetypes")
2023-12-18 09:11:00 +01:00
vim.notify("starting nvim 🏕️")