diff options
| author | m0ntagur <leander@leander-scherer.de> | 2023-07-22 15:50:52 +0200 |
|---|---|---|
| committer | m0ntagur <leander@leander-scherer.de> | 2023-07-22 15:50:52 +0200 |
| commit | 7500202f103382077eb3a35c2533fea7cedc227f (patch) | |
| tree | 68cff382c97166e6a248cb2902e57d7728b42c83 /nvim/init.lua | |
| parent | f60b4dc97bf7204a5bc3fe316df2ce4bd709babd (diff) | |
Update nvim to new configuration
Diffstat (limited to 'nvim/init.lua')
| -rw-r--r-- | nvim/init.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/nvim/init.lua b/nvim/init.lua new file mode 100644 index 0000000..e577d4a --- /dev/null +++ b/nvim/init.lua @@ -0,0 +1,12 @@ +local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" +if not vim.loop.fs_stat(lazypath) then + -- bootstrap lazy.nvim + -- stylua: ignore + vim.fn.system({ "git", "clone", "--filter=blob:none", "https://github.com/folke/lazy.nvim.git", "--branch=stable", lazypath }) +end +vim.opt.rtp:prepend(vim.env.LAZY or lazypath) + +require('autocmds') +require('keymaps') +require('options') +require('plugins') |
