feat(nvim): add lazy.nvim (WIP)
This commit is contained in:
parent
41b0cc8747
commit
a7b8a29d6b
2 changed files with 8 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
-- Plugins
|
||||
require("config.lazy")
|
||||
|
||||
-- Visual
|
||||
vim.opt.number = true -- Show line numbers
|
||||
vim.opt.relativenumber = true -- Show relative line numbers
|
||||
|
||||
|
|
4
.config/nvim/lua/config/lazy.lua
Normal file
4
.config/nvim/lua/config/lazy.lua
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue