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": [
|
||||
|
||||
"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.md": "2123"
|
||||
|
|
|
@ -6,8 +6,10 @@ return {
|
|||
-- { "sainnhe/sonokai" },
|
||||
-- { "tanvirtin/monokai.nvim" },
|
||||
-- Configure LazyVim to load gruvbox
|
||||
|
||||
-- { "bluz71/vim-moonfly-colors", name = "moonfly", lazy = false, priority = 1000 },
|
||||
{ "savq/melange-nvim" },
|
||||
-- {"cpea2506/one_monokai.nvim"},
|
||||
{ "Mofiqul/vscode.nvim" },
|
||||
{
|
||||
"LazyVim/LazyVim",
|
||||
opts = {
|
||||
|
|
|
@ -1,10 +1,14 @@
|
|||
return {
|
||||
"NeogitOrg/neogit",
|
||||
dependencies = {
|
||||
"nvim-lua/plenary.nvim", -- required
|
||||
"nvim-telescope/telescope.nvim", -- optional
|
||||
"sindrets/diffview.nvim", -- optional
|
||||
"ibhagwan/fzf-lua", -- optional
|
||||
keys = {
|
||||
|
||||
{ "<leader>gn", "<cmd>Neogit<cr>", desc = "launch neogit" },
|
||||
},
|
||||
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