mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-06-30 09:04:26 +02:00
Adding tmux support
This commit is contained in:
parent
af21c78d94
commit
1444396a9b
2 changed files with 62 additions and 8 deletions
23
init.lua
23
init.lua
|
@ -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 = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue