neovim-config/ftplugin/meson.lua
2025-10-22 06:57:49 +02:00

11 lines
493 B
Lua

-- 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