diff options
| author | Ja.KooLit <85185940+JaKooLit@users.noreply.github.com> | 2024-07-08 10:18:20 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-08 10:18:20 +0900 |
| commit | 9d8709a2ce4b3c58fdb309d28f2052834cb2a7fd (patch) | |
| tree | f0d59a5f86560722423eb4d704733bd8034e5b2c /config/nvim/init.lua | |
| parent | 33db28c181f8324db90803af09344f0bcd8ff4d2 (diff) | |
| parent | fd0344c5e578cbd6b1a4a5dff18e927956157e02 (diff) | |
Merge pull request #374 from Fernu292/nvim-config
Nvim config
Diffstat (limited to 'config/nvim/init.lua')
| -rw-r--r-- | config/nvim/init.lua | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/config/nvim/init.lua b/config/nvim/init.lua new file mode 100644 index 00000000..861f3aee --- /dev/null +++ b/config/nvim/init.lua @@ -0,0 +1,16 @@ +local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" +if not (vim.uv or 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 +vim.opt.rtp:prepend(lazypath) + +require("lazy").setup("plugins") +require("vim-options") + |
