-- You can add your own plugins here or in other files in this directory! -- I promise not to create any merge conflicts in this directory :) -- -- See the kickstart.nvim README for more information return { { 'alexghergh/nvim-tmux-navigation', config = function() local nvim_tmux_nav = require 'nvim-tmux-navigation' vim.keymap.set('n', '', nvim_tmux_nav.NvimTmuxNavigateLeft) vim.keymap.set('n', '', nvim_tmux_nav.NvimTmuxNavigateDown) vim.keymap.set('n', '', nvim_tmux_nav.NvimTmuxNavigateUp) vim.keymap.set('n', '', nvim_tmux_nav.NvimTmuxNavigateRight) vim.keymap.set('n', '', nvim_tmux_nav.NvimTmuxNavigateLastActive) vim.keymap.set('n', '', nvim_tmux_nav.NvimTmuxNavigateNext) nvim_tmux_nav.setup { disable_when_zoomed = true, -- defaults to false } end, keys = { { '', 'TmuxNavigatePrevious', desc = 'Go to the previous pane' }, { '', 'TmuxNavigateLeft', desc = 'Got to the left pane' }, { '', 'TmuxNavigateDown', desc = 'Got to the down pane' }, { '', 'TmuxNavigateUp', desc = 'Got to the up pane' }, { '', 'TmuxNavigateRight', desc = 'Got to the right pane' }, }, }, { 'nvim-tree/nvim-tree.lua' }, { 'nvim-tree/nvim-web-devicons' }, { 'utilyre/barbecue.nvim', config = function() require('barbecue').setup() end, dependencies = { 'SmiteshP/nvim-navic', 'nvim-tree/nvim-web-devicons', -- optional dependency }, }, { 'catppuccin/nvim', name = 'catppuccin' }, { 'LazyVim/LazyVim', opts = { colorscheme = 'catppuccin', }, }, { 'folke/todo-comments.nvim', dependencies = { 'nvim-lua/plenary.nvim' }, opts = { -- your configuration comes here -- or leave it empty to use the default settings -- refer to the configuration section below }, }, }