altercations for mac
This commit is contained in:
@@ -296,6 +296,9 @@ require('lazy').setup({
|
|||||||
{ -- Useful plugin to show you pending keybinds.
|
{ -- Useful plugin to show you pending keybinds.
|
||||||
'folke/which-key.nvim',
|
'folke/which-key.nvim',
|
||||||
event = 'VimEnter', -- Sets the loading event to 'VimEnter'
|
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
|
config = function() -- This is the function that runs, AFTER loading
|
||||||
require('which-key').setup()
|
require('which-key').setup()
|
||||||
|
|
||||||
@@ -574,7 +577,7 @@ require('lazy').setup({
|
|||||||
'/home/talksik-desktop/Qt/Tools/QtCreator/libexec/qtcreator/clang/bin/clangd',
|
'/home/talksik-desktop/Qt/Tools/QtCreator/libexec/qtcreator/clang/bin/clangd',
|
||||||
'--offset-encoding=utf-16',
|
'--offset-encoding=utf-16',
|
||||||
-- Need below if you want to use an embedded sysroot for library & header files
|
-- 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' },
|
filetypes = { 'c', 'cpp', 'objc', 'objcpp', 'hpp', 'h', 'cc' },
|
||||||
},
|
},
|
||||||
|
|||||||
+24
-10
@@ -98,16 +98,30 @@ return {
|
|||||||
end,
|
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',
|
"davidmh/mdx.nvim",
|
||||||
config = function()
|
config = true,
|
||||||
vim.keymap.set('n', '<leader>9', function()
|
dependencies = { "nvim-treesitter/nvim-treesitter" }
|
||||||
vim.cmd 'BufferPrevious'
|
|
||||||
end, {})
|
|
||||||
vim.keymap.set('n', '<leader>0', function()
|
|
||||||
vim.cmd 'BufferNext'
|
|
||||||
end, {})
|
|
||||||
end,
|
|
||||||
},
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
'akinsho/flutter-tools.nvim',
|
||||||
|
requires = {
|
||||||
|
'nvim-lua/plenary.nvim',
|
||||||
|
'stevearc/dressing.nvim', -- optional for vim.ui.select
|
||||||
|
},
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user