feat: Switch from spaces to tabs for indenting my config

This commit is contained in:
kalmenn 2024-09-12 21:53:56 +02:00
parent cf9f8c40fc
commit f073cca3b6
Signed by: kalmenn
GPG key ID: F500055C44BC3834
17 changed files with 480 additions and 476 deletions

View file

@ -1,9 +1,9 @@
vim.filetype.add({
extension = {
typ = function(_, bufnr)
vim.bo[bufnr].shiftwidth = 2
vim.bo[bufnr].tabstop = 2
return "typst"
end,
},
extension = {
typ = function(_, bufnr)
vim.bo[bufnr].shiftwidth = 2
vim.bo[bufnr].tabstop = 2
return "typst"
end,
},
})