default js/ts and python setup
This commit is contained in:
parent
f764b7bacd
commit
af466b6df8
12 changed files with 165 additions and 5 deletions
21
lua/custom/plugins/neogit.lua
Normal file
21
lua/custom/plugins/neogit.lua
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
return {
|
||||
"NeogitOrg/neogit",
|
||||
dependencies = {
|
||||
"nvim-lua/plenary.nvim", -- required
|
||||
"sindrets/diffview.nvim", -- optional - Diff integration
|
||||
"nvim-telescope/telescope.nvim", -- optional
|
||||
},
|
||||
config = function()
|
||||
require("neogit").setup({
|
||||
kind = "split", -- opens neogit in a split
|
||||
signs = {
|
||||
-- { CLOSED, OPENED }
|
||||
section = { "", "" },
|
||||
item = { "", "" },
|
||||
hunk = { "", "" },
|
||||
},
|
||||
integrations = { diffview = true }, -- adds integration with diffview.nvim
|
||||
})
|
||||
end,
|
||||
config = true
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue