diff options
| author | FernuDev <fernu292@gmail.com> | 2024-07-07 19:02:54 -0600 |
|---|---|---|
| committer | FernuDev <fernu292@gmail.com> | 2024-07-07 19:02:54 -0600 |
| commit | c72b006c67b48761657917c23dfc04dbf38c264e (patch) | |
| tree | 86c3d40d2e268be934a77100f187994ab410d465 /config/nvim/init.lua | |
| parent | 33db28c181f8324db90803af09344f0bcd8ff4d2 (diff) | |
feat: add neovim configuration files
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") + |
