Add: first import
This commit is contained in:
commit
82641f61be
23 changed files with 800 additions and 0 deletions
8
ftplugin/yaml.lua
Normal file
8
ftplugin/yaml.lua
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
-- 🔧 Configuration propre pour les fichiers YAML
|
||||
vim.bo.expandtab = true -- Utilise des espaces au lieu de tabs
|
||||
vim.bo.shiftwidth = 2 -- Indentation de 2 espaces
|
||||
vim.bo.tabstop = 2 -- Tabulation de 2 espaces
|
||||
vim.bo.softtabstop = 2 -- Tabulation douce de 2 espaces
|
||||
vim.bo.autoindent = true -- Indentation automatique
|
||||
vim.bo.smartindent = true -- Indentation intelligente
|
||||
vim.bo.fileformat = "unix" -- Format de fin de ligne
|
||||
Loading…
Add table
Add a link
Reference in a new issue