79090402

Date: 2024-10-15 14:33:42
Score: 2
Natty:
Report link

you might be trying to write vimscript code in your lua file (init.lua).

Either write following to use vimscript:
vim.cmd('set expandtab')
vim.cmd('set tabstop=4')

or use lua:
vim.opt.tabstop = 4
vim.opt.expandtab = true

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Low reputation (1):
Posted by: Tinkerrring