summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikolas <nikolas@boutalas.com>2025-05-31 02:29:23 +0300
committerNikolas <nikolas@boutalas.com>2025-05-31 02:31:45 +0300
commit44daafca5366b06b5afe2ac8a79ed2c3c62b63be (patch)
tree65bf6c4dc8f7ab7d1fdd7abb4202f4ca0cc29b2f
parent1d737956dfd8ccc7dcadb235f742dbce78182a4d (diff)
nvim: add lazy.nvimHEADmaster
Disabled runtime path resetting to allow nvim access to pre-packaged parsers (from ports)
-rw-r--r--.config/nvim/init.lua37
-rw-r--r--.config/nvim/lazy-lock.json3
2 files changed, 40 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 }, },
+})
+
diff --git a/.config/nvim/lazy-lock.json b/.config/nvim/lazy-lock.json
new file mode 100644
index 0000000..57d2f1e
--- /dev/null
+++ b/.config/nvim/lazy-lock.json
@@ -0,0 +1,3 @@
+{
+ "lazy.nvim": { "branch": "main", "commit": "6c3bda4aca61a13a9c63f1c1d1b16b9d3be90d7a" }
+}