diff options
author | Nikolas <nikolas@boutalas.com> | 2025-05-31 02:29:23 +0300 |
---|---|---|
committer | Nikolas <nikolas@boutalas.com> | 2025-05-31 02:31:45 +0300 |
commit | 44daafca5366b06b5afe2ac8a79ed2c3c62b63be (patch) | |
tree | 65bf6c4dc8f7ab7d1fdd7abb4202f4ca0cc29b2f /.config/nvim/init.lua | |
parent | 1d737956dfd8ccc7dcadb235f742dbce78182a4d (diff) |
nvim: add lazy.nvim
Disabled runtime path resetting to allow nvim
access to pre-packaged parsers (from ports)
Diffstat (limited to '.config/nvim/init.lua')
-rw-r--r-- | .config/nvim/init.lua | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/.config/nvim/init.lua b/.config/nvim/init.lua new file mode 100644 index 0000000..2a22f7e --- /dev/null +++ b/.config/nvim/init.lua @@ -0,0 +1,37 @@ +-- Bootstrap lazy.nvim +local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim" +if not (vim.uv or vim.loop).fs_stat(lazypath) then + local lazyrepo = "https://github.com/folke/lazy.nvim.git" + local out = vim.fn.system({ "git", "clone", "--filter=blob:none", "--branch=stable", lazyrepo, lazypath }) + if vim.v.shell_error ~= 0 then + vim.api.nvim_echo({ + { "Failed to clone lazy.nvim:\n", "ErrorMsg" }, + { out, "WarningMsg" }, + { "\nPress any key to exit..." }, + }, true, {}) + vim.fn.getchar() + os.exit(1) + end +end +vim.opt.rtp:prepend(lazypath) + +-- Make sure to setup `mapleader` and `maplocalleader` before +-- loading lazy.nvim so that mappings are correct. +-- This is also a good place to setup other settings (vim.opt) +vim.g.mapleader = " " +vim.g.maplocalleader = "\\" + +-- Setup lazy.nvim +require("lazy").setup({ + spec = { + -- add your plugins here + }, + -- Configure any other settings here. See the documentation for more details. + -- colorscheme that will be used when installing plugins. + install = { colorscheme = { "habamax" } }, + -- automatically check for plugin updates + checker = { enabled = true }, + rocks = { enabled = false }, + performance = { rtp = { reset = false }, }, +}) + |