Skip to content

Instantly share code, notes, and snippets.

View GllmR's full-sized avatar
πŸ’Ύ
!

GllmR

πŸ’Ύ
!
  • Living Data
View GitHub Profile
@GllmR
GllmR / init.lua
Last active June 12, 2026 15:32
One file Neovim configuration
---@diagnostic disable: undefined-global
----------
-- LAZY --
----------
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
if not (vim.uv or vim.loop).fs_stat(lazypath) then
local lazyrepo = "https://github.com/folke/lazy.nvim.git"
local out = vim.fn.system({ "git", "clone", "--filter=blob:none", "--branch=stable", lazyrepo, lazypath })