This commit is contained in:
2025-08-08 23:51:52 +02:00
parent f5657d958d
commit 197beff627
6 changed files with 162 additions and 50 deletions

View File

@@ -81,5 +81,15 @@ vim.o.scrolloff = 10
-- See `:help 'confirm'`
vim.o.confirm = true
-- Indentation : espaces par défaut
vim.opt.expandtab = true -- convertit les tabs en espaces
vim.opt.tabstop = 2 -- largeur visuelle d'un tab
vim.opt.shiftwidth = 2 -- indentation à 2 espaces
vim.opt.softtabstop = 2 -- nombre d'espaces quand tu tapes <Tab>
-- indentation auto intelligente
vim.opt.smartindent = true
-- The line beneath this is called `modeline`. See `:help modeline`
-- vim: ts=2 sts=2 sw=2 et
-- vim: ts=2 sts=2 sw=2 et