Skip to content

Instantly share code, notes, and snippets.

View logotip4ik's full-sized avatar
🇺🇦
#StandWithUkraine

Bogdan Kostyuk logotip4ik

🇺🇦
#StandWithUkraine
View GitHub Profile
@logotip4ik
logotip4ik / init.lua
Last active April 25, 2024 09:14
my nvim config
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,
})