feat(nvim): add lazy.nvim (WIP)

This commit is contained in:
Mohammad Rafiq 2025-02-20 18:40:49 +08:00
parent 41b0cc8747
commit a7b8a29d6b
2 changed files with 8 additions and 0 deletions

View file

@ -1,3 +1,7 @@
-- Plugins
require("config.lazy")
-- Visual
vim.opt.number = true -- Show line numbers vim.opt.number = true -- Show line numbers
vim.opt.relativenumber = true -- Show relative line numbers vim.opt.relativenumber = true -- Show relative line numbers

View file

@ -0,0 +1,4 @@
-- Bootstrap lazy.nvim
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
-- Get the path for the vim install and append /lazy/lazy.nvim to it