adding in lazygit

This commit is contained in:
talksik
2024-03-24 11:55:06 -07:00
parent 488527b6bb
commit fee9755134
2 changed files with 17 additions and 3 deletions
+3 -2
View File
@@ -567,6 +567,7 @@ require('lazy').setup({
'--offset-encoding=utf-16',
'--query-driver=/home/talksik/Qt/6.6.1/Boot2Qt/raspberrypi4-64/toolchain/sysroots/x86_64-pokysdk-linux/usr/bin/aarch64-poky-linux/aarch64-poky-linux-*',
},
filetypes = { 'c', 'cpp', 'objc', 'objcpp', 'hpp', 'h', 'cc' },
},
gopls = {},
-- pyright = {},
@@ -768,8 +769,8 @@ require('lazy').setup({
init = function()
-- Load the colorscheme here.
-- Like many other themes, this one has different styles, and you could load
-- any other, such as 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
vim.cmd.colorscheme 'tokyonight-night'
-- any other, such as 'tokyonight-night', 'tokyonight-storm', 'tokyonight-moon', or 'tokyonight-day'.
vim.cmd.colorscheme 'tokyonight-storm'
-- You can configure highlights by doing something like:
vim.cmd.hi 'Comment gui=none'
+14 -1
View File
@@ -34,7 +34,7 @@ return {
},
config = function()
-- toggle zen mode on zz
vim.api.nvim_set_keymap('n', 'zz', '<cmd>ZenMode<CR>', { noremap = true, silent = true })
vim.api.nvim_set_keymap('n', '<leader>zz', '<cmd>ZenMode<CR>', { noremap = true, silent = true })
end,
},
@@ -84,4 +84,17 @@ return {
}
end,
},
-- lazygit
{
'kdheepak/lazygit.nvim',
dependencies = {
'nvim-lua/plenary.nvim',
},
config = function()
vim.keymap.set('n', '<leader>gg', function()
vim.cmd 'LazyGit'
end, {})
end,
},
}