feat: initial commit

This commit is contained in:
hmeens
2026-03-20 16:44:13 +01:00
commit 2d9f13f9ab
28 changed files with 2716 additions and 0 deletions

28
nvim/init.lua Executable file
View File

@@ -0,0 +1,28 @@
vim.g.mapleader = " "
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)
require("lazy").setup("plugins", {
dev = {
-- directory where you store your local plugin projects
path = "~/lua/nvim-plugins",
fallback = true, -- Fallback to git when local plugin doesn't exist
},
})
require("settings")
require("mappings")
require("setup")