dotfiles/nvim/after/ftplugin/rust.lua
2024-07-08 20:40:10 +02:00

10 lines
198 B
Lua

local opt = vim.opt_local
opt.commentstring = '// %s'
opt.shiftwidth = 4
opt.softtabstop = 4
opt.smartindent = true
opt.tabstop = 4
opt.cindent = false
opt.expandtab = false