mirror of https://github.com/LazyVim/starter
Feat : added neogit keymap & lazyextras
parent
a122ebed70
commit
12bfadc58b
10
lazyvim.json
10
lazyvim.json
|
@ -1,6 +1,14 @@
|
||||||
{
|
{
|
||||||
"extras": [
|
"extras": [
|
||||||
|
"lazyvim.plugins.extras.editor.leap",
|
||||||
|
"lazyvim.plugins.extras.editor.symbols-outline",
|
||||||
|
"lazyvim.plugins.extras.formatting.prettier",
|
||||||
|
"lazyvim.plugins.extras.lang.go",
|
||||||
|
"lazyvim.plugins.extras.lang.tailwind",
|
||||||
|
"lazyvim.plugins.extras.lang.typescript",
|
||||||
|
"lazyvim.plugins.extras.linting.eslint",
|
||||||
|
"lazyvim.plugins.extras.lsp.none-ls",
|
||||||
|
"lazyvim.plugins.extras.test.core"
|
||||||
],
|
],
|
||||||
"news": {
|
"news": {
|
||||||
"NEWS.md": "2123"
|
"NEWS.md": "2123"
|
||||||
|
|
|
@ -6,8 +6,10 @@ return {
|
||||||
-- { "sainnhe/sonokai" },
|
-- { "sainnhe/sonokai" },
|
||||||
-- { "tanvirtin/monokai.nvim" },
|
-- { "tanvirtin/monokai.nvim" },
|
||||||
-- Configure LazyVim to load gruvbox
|
-- Configure LazyVim to load gruvbox
|
||||||
|
-- { "bluz71/vim-moonfly-colors", name = "moonfly", lazy = false, priority = 1000 },
|
||||||
{ "savq/melange-nvim" },
|
{ "savq/melange-nvim" },
|
||||||
|
-- {"cpea2506/one_monokai.nvim"},
|
||||||
|
{ "Mofiqul/vscode.nvim" },
|
||||||
{
|
{
|
||||||
"LazyVim/LazyVim",
|
"LazyVim/LazyVim",
|
||||||
opts = {
|
opts = {
|
||||||
|
|
|
@ -1,10 +1,14 @@
|
||||||
return {
|
return {
|
||||||
"NeogitOrg/neogit",
|
"NeogitOrg/neogit",
|
||||||
dependencies = {
|
keys = {
|
||||||
"nvim-lua/plenary.nvim", -- required
|
|
||||||
"nvim-telescope/telescope.nvim", -- optional
|
{ "<leader>gn", "<cmd>Neogit<cr>", desc = "launch neogit" },
|
||||||
"sindrets/diffview.nvim", -- optional
|
|
||||||
"ibhagwan/fzf-lua", -- optional
|
|
||||||
},
|
},
|
||||||
config = true
|
dependencies = {
|
||||||
|
"nvim-lua/plenary.nvim", -- required
|
||||||
|
"nvim-telescope/telescope.nvim", -- optional
|
||||||
|
"sindrets/diffview.nvim", -- optional
|
||||||
|
"ibhagwan/fzf-lua", -- optional
|
||||||
|
},
|
||||||
|
config = true,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue