Added sunshine

This commit is contained in:
2026-01-02 11:33:27 +01:00
parent 432bd834d5
commit 0e1992b36a
11 changed files with 257 additions and 26 deletions

View File

@@ -1,3 +1,12 @@
vim.api.nvim_create_autocmd('FileType', {
pattern = 'html',
callback = function()
vim.opt_local.tabstop = 2
vim.opt_local.shiftwidth = 2
vim.opt_local.expandtab = true
end,
})
return {
{ -- Add indentation guides even on blank lines
'lukas-reineke/indent-blankline.nvim',