commit bd5a9aa75b8cc559d7667cb506e2a332a38ed4a9 Author: zymon Date: Wed Aug 21 13:01:54 2024 +0200 repo init + config reorg diff --git a/README.md b/README.md new file mode 100644 index 0000000..758ef33 --- /dev/null +++ b/README.md @@ -0,0 +1,6 @@ +# zymon's nvim config + +## Install +```sh +ln -s `pwd` "${XDG_CONFIG_HOME}/nvim" +``` diff --git a/init.lua b/init.lua new file mode 100644 index 0000000..7474d5b --- /dev/null +++ b/init.lua @@ -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