altercations for mac

This commit is contained in:
talksik
2024-11-01 14:01:32 -07:00
parent 5e177cc712
commit 96263c130a
2 changed files with 28 additions and 11 deletions
+4 -1
View File
@@ -296,6 +296,9 @@ require('lazy').setup({
{ -- Useful plugin to show you pending keybinds.
'folke/which-key.nvim',
event = 'VimEnter', -- Sets the loading event to 'VimEnter'
dependencies = {
{ 'nvim-tree/nvim-web-devicons', enabled = vim.g.have_nerd_font },
},
config = function() -- This is the function that runs, AFTER loading
require('which-key').setup()
@@ -574,7 +577,7 @@ require('lazy').setup({
'/home/talksik-desktop/Qt/Tools/QtCreator/libexec/qtcreator/clang/bin/clangd',
'--offset-encoding=utf-16',
-- Need below if you want to use an embedded sysroot for library & header files
'--query-driver=/home/talksik-desktop/Qt/6.6.2/Boot2Qt/raspberrypi4-64/toolchain/sysroots/x86_64-pokysdk-linux/usr/bin/aarch64-poky-linux/aarch64-poky-linux-*',
-- '--query-driver=/home/talksik-desktop/Qt/6.6.2/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' },
},
+24 -10
View File
@@ -98,16 +98,30 @@ return {
end,
},
-- add in shortcuts for next and previous buffer
-- -- add in shortcuts for next and previous buffer
-- {
-- 'romgrk/barbar.nvim',
-- config = function()
-- vim.keymap.set('n', '<leader>9', function()
-- vim.cmd 'BufferPrevious'
-- end, {})
-- vim.keymap.set('n', '<leader>0', function()
-- vim.cmd 'BufferNext'
-- end, {})
-- end,
-- },
{
'romgrk/barbar.nvim',
config = function()
vim.keymap.set('n', '<leader>9', function()
vim.cmd 'BufferPrevious'
end, {})
vim.keymap.set('n', '<leader>0', function()
vim.cmd 'BufferNext'
end, {})
end,
"davidmh/mdx.nvim",
config = true,
dependencies = { "nvim-treesitter/nvim-treesitter" }
},
{
'akinsho/flutter-tools.nvim',
requires = {
'nvim-lua/plenary.nvim',
'stevearc/dressing.nvim', -- optional for vim.ui.select
},
}
}