Add: first import

This commit is contained in:
DuN0z 2025-10-22 06:57:49 +02:00
commit 82641f61be
23 changed files with 800 additions and 0 deletions

24
lua/plugins/basic.lua Normal file
View file

@ -0,0 +1,24 @@
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,
},
}