linting
This commit is contained in:
parent
8b3d267492
commit
ff03b6eaaf
3 changed files with 5 additions and 6 deletions
4
init.lua
4
init.lua
|
@ -20,8 +20,8 @@ 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
|
lockfile = vim.fn.stdpath("data") .. "/lazy-lock.json", -- in data directory as normal location read only as managed by nix
|
||||||
dev = {
|
dev = {
|
||||||
path = "~/Projects/Neovim"
|
path = "~/Projects/Neovim",
|
||||||
}
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
-- [[ Setting options ]]
|
-- [[ Setting options ]]
|
||||||
|
|
|
@ -60,5 +60,5 @@ return {
|
||||||
require("Comment").setup()
|
require("Comment").setup()
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
"SidOfc/mkdx"
|
"SidOfc/mkdx",
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
return {
|
return {
|
||||||
"euclio/vim-markdown-composer",
|
"euclio/vim-markdown-composer",
|
||||||
build = "cargo build --release"
|
build = "cargo build --release",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue