mirror of
https://github.com/softinio/nvim-config.git
synced 2025-09-03 16:16:42 -07:00
markdown improvements and lazy config changes
This commit is contained in:
parent
f1ca602f8d
commit
3ae37019b1
3 changed files with 15 additions and 13 deletions
7
init.lua
7
init.lua
|
@ -17,7 +17,12 @@ vim.opt.rtp:prepend(lazypath)
|
|||
vim.g.mapleader = " "
|
||||
vim.g.maplocalleader = " "
|
||||
|
||||
require("lazy").setup("plugins")
|
||||
require("lazy").setup("plugins", {
|
||||
lockfile = vim.fn.stdpath("data") .. "/lazy-lock.json", -- in data directory as normal location read only as managed by nix
|
||||
dev = {
|
||||
path = "~/Projects/Neovim"
|
||||
}
|
||||
})
|
||||
|
||||
-- [[ Setting options ]]
|
||||
-- See `:help vim.o`
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue