repo init + config reorg
This commit is contained in:
commit
bd5a9aa75b
2 changed files with 17 additions and 0 deletions
6
README.md
Normal file
6
README.md
Normal file
|
@ -0,0 +1,6 @@
|
|||
# zymon's nvim config
|
||||
|
||||
## Install
|
||||
```sh
|
||||
ln -s `pwd` "${XDG_CONFIG_HOME}/nvim"
|
||||
```
|
11
init.lua
Normal file
11
init.lua
Normal 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
|
Loading…
Reference in a new issue