25 lines
730 B
Lua
25 lines
730 B
Lua
|
|
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,
|
||
|
|
},
|
||
|
|
}
|