use kickstart-nix

This commit is contained in:
iofq 2024-08-10 01:44:12 -05:00
parent 53bfda8bcd
commit b33413dd18
36 changed files with 1291 additions and 519 deletions

15
nvim/plugin/neogit.lua Normal file
View file

@ -0,0 +1,15 @@
if vim.g.did_load_neogit_plugin then
return
end
vim.g.did_load_neogit_plugin = true
local neogit = require('neogit')
neogit.setup {
disable_builtin_notifications = true,
integrations = {
diffview = true,
telescope = true,
fzf_lua = true,
},
}
vim.keymap.set('n', '<leader>ng', neogit.open, { noremap = true, silent = true, desc = "Neogit"})