Add telescope integration for neogit

This commit is contained in:
Graham McMillan 2024-07-11 16:46:55 +02:00
parent c1dbb3f7b3
commit 9050f8a6f2
2 changed files with 5 additions and 2 deletions

View File

@ -22,7 +22,7 @@ return {
priority = 1000,
config = function()
require('tokyonight').setup {
style = 'moon',
style = 'night',
}
vim.cmd [[colorscheme tokyonight]]
end,

View File

@ -13,7 +13,10 @@ return {
config = function()
require('neogit').setup {
kind = 'split',
integrations = { diffview = true },
integrations = {
diffview = true,
telescope = true,
},
}
end,
},