diff options
| author | William Hergès <william@herges.fr> | 2025-08-12 15:25:31 +0200 |
|---|---|---|
| committer | William Hergès <william@herges.fr> | 2025-08-12 15:25:31 +0200 |
| commit | 3fa491d7a40304b27040cbd650ff23cca293e8b2 (patch) | |
| tree | 2212e26cdc1f3d313a6fc0a8f017a70a838e6527 /config/nvim/lua/plugin.lua | |
| parent | ab93bfa16d109a09d49e35e77e7fb2634f8bb0c1 (diff) | |
feat(config): nvim
Diffstat (limited to 'config/nvim/lua/plugin.lua')
| -rw-r--r-- | config/nvim/lua/plugin.lua | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/config/nvim/lua/plugin.lua b/config/nvim/lua/plugin.lua new file mode 100644 index 0000000..d88d9ac --- /dev/null +++ b/config/nvim/lua/plugin.lua @@ -0,0 +1,18 @@ +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) + +-- This is also a good place to setup other settings (vim.opt) +vim.g.mapleader = " " +vim.g.maplocalleader = "\\" + +require("lazy").setup("plugins") |
