nvim/init.lua
Maciej Lebiest 4c33bec5c9
All checks were successful
Build neovim image / build-neovim-amd64 (push) Successful in 9m44s
Build neovim image / build-neovim-arm64 (push) Successful in 10m19s
Build neovim image / update-images-manifest (push) Successful in 19s
change leader key to space
2024-11-07 12:39:18 +01:00

22 lines
532 B
Lua

-- set leader here, so other configs know about it
vim.g.mapleader = " "
--make sure Lazy is installed
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.opt.termguicolors = true
-- load all plugins
require("lazy-load")
-- load general config
require("general")