Adding tmux support

This commit is contained in:
Pgolik 2025-01-27 08:23:48 +01:00 committed by GitHub
parent af21c78d94
commit 1444396a9b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 62 additions and 8 deletions

View file

@ -26,6 +26,17 @@ vim.opt.rtp:prepend(lazypath)
-- NOTE: Here is where you install your plugins.
require('lazy').setup({
-- NOTE: Plugins can be added with a link (or for a github repo: 'owner/repo' link).
{
'christoomey/vim-tmux-navigator',
cmd = {
'TmuxNavigateLeft',
'TmuxNavigateDown',
'TmuxNavigateUp',
'TmuxNavigateRight',
'TmuxNavigatePrevious',
'TmuxNavigatorProcessList',
},
},
{
'pmizio/typescript-tools.nvim',
dependencies = { 'nvim-lua/plenary.nvim', 'neovim/nvim-lspconfig' },
@ -502,14 +513,10 @@ require('lazy').setup({
},
},
},
pylsp = {
plugins = {
ruff = {
enabled = true,
formatEnabled = true,
},
autopep8 = { enabled = false },
},
pyright = {},
ruff = {
enabled = true,
formatEnabled = true,
},
cmake = {},
lua_ls = {