hologroove dc1cbe8505 First config attempt
- some LazyVim style keymaps
- Mason using local registry (erlang-ls v1.1.0 not yet merged to
registry, after that it's not needed)
- erlang-ls LSP
- LazyGit plugin
- Telescope file_browser plugin
- enable Nerd fonts
- listchars for leading space
2024-12-20 15:17:58 +01:00

21 lines
518 B
Lua

return {
'kdheepak/lazygit.nvim',
lazy = true,
cmd = {
'LazyGit',
'LazyGitConfig',
'LazyGitCurrentFile',
'LazyGitFilter',
'LazyGitFilterCurrentFile',
},
-- optional for floating window border decoration
dependencies = {
'nvim-lua/plenary.nvim',
},
-- setting the keybinding for LazyGit with 'keys' is recommended in
-- order to load the plugin when the command is run for the first time
keys = {
{ '<leader>gg', '<cmd>LazyGitCurrentFile<cr>', desc = 'LazyGit' },
},
}