neovim-config/lua/plugins/basic.lua

25 lines
730 B
Lua
Raw Normal View History

2025-10-22 06:57:49 +02:00
return {
{
"nvim-lua/plenary.nvim", -- lua functions that many plugins use
},
{
"christoomey/vim-tmux-navigator", -- tmux & split window navigation
},
{
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function()
require("nvim-treesitter.configs").setup({
ensure_installed = { "lua", "python", "bash", "markdown" }, -- Parsers à installer
sync_install = false,
auto_install = true,
highlight = {
enable = true,
additional_vim_regex_highlighting = false,
},
indent = { enable = true },
})
end,
},
}