dotfiles/nvim/after/ftplugin/rust.lua

10 lines
198 B
Lua
Raw Permalink Normal View History

2024-07-08 20:40:10 +02:00
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