kickstart.nvim/after/ftplugin/vala.lua

7 lines
244 B
Lua

-- Set indentation for Vala files
vim.bo.shiftwidth = 4 -- number of spaces for each indent
vim.bo.tabstop = 4 -- display width of a tab
vim.bo.expandtab = true -- convert tabs to spaces
vim.bo.smartindent = true
vim.bo.commentstring = '// %s'