6 lines
290 B
Lua
6 lines
290 B
Lua
-- WGSL filetype settings
|
|
vim.opt_local.shiftwidth = 4 -- Indentation width for >> and <<
|
|
vim.opt_local.tabstop = 4 -- Width of a tab character
|
|
vim.opt_local.softtabstop = 4 -- Number of spaces for tab in insert mode
|
|
vim.opt_local.expandtab = true -- Use spaces instead of tabs
|