mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-12-07 09:35:37 -08:00
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
This commit is contained in:
20
lua/custom/plugins/lazygit.lua
Normal file
20
lua/custom/plugins/lazygit.lua
Normal file
@@ -0,0 +1,20 @@
|
||||
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' },
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user