Add: first import
This commit is contained in:
commit
82641f61be
23 changed files with 800 additions and 0 deletions
8
ftplugin/lua.lua
Normal file
8
ftplugin/lua.lua
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
-- Indentation verrouillée à 4 espaces
|
||||
vim.bo.expandtab = true -- Remplace les tabs par des espaces
|
||||
vim.bo.shiftwidth = 4 -- Indentation : 4 espaces
|
||||
vim.bo.tabstop = 4 -- Largeur d'une tabulation : 4
|
||||
vim.bo.softtabstop = 4 -- Tabulation en édition : 4
|
||||
vim.bo.autoindent = true -- Copie l’indentation précédente
|
||||
vim.bo.smartindent = true -- Indentation intelligente
|
||||
vim.opt.number = true
|
||||
Loading…
Add table
Add a link
Reference in a new issue