1
0
Fork 0

repo init + config reorg

This commit is contained in:
zymon 2024-08-21 13:01:54 +02:00
commit bd5a9aa75b
2 changed files with 17 additions and 0 deletions

6
README.md Normal file
View file

@ -0,0 +1,6 @@
# zymon's nvim config
## Install
```sh
ln -s `pwd` "${XDG_CONFIG_HOME}/nvim"
```

11
init.lua Normal file
View file

@ -0,0 +1,11 @@
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