-- ftplugin/meson.lua -- Configuration des tabulations pour Meson vim.bo.expandtab = true -- Utiliser des espaces au lieu de tabulations vim.bo.shiftwidth = 4 -- Largeur des indentations (4 espaces) vim.bo.tabstop = 4 -- Taille d'une tabulation -- Activer la coloration syntaxique (si désactivée par défaut) vim.cmd('syntax on') -- Définir le formatage automatique vim.bo.formatoptions = vim.bo.formatoptions .. 'cqrn' -- Respecter les retours à la ligne et auto-indent